/******************************
*   Tipografias
******************************/
@import url('footer.css');
@import url('all.css');
@import url('typo.css');

:root {
    --negro: 0, 0, 0;
    --blanco: 255, 255, 255;

    --nar_xd: 235, 96, 4;
    --nar_d: 233, 43, 0;
    --nar_m: 240, 105, 0;
    --nar_l: 245, 140, 0;
    --bg: linear-gradient(45deg, rgb(var(--nar_d)) 0%, rgb(var(--nar_l)) 70%, rgb(var(--nar_m)) 100%);

    --nar_01: 235, 96, 34;
    --nar_02: 255, 126, 15;
    --b01: linear-gradient(to bottom, rgb(var(--nar_02)) 0%, rgb(var(--nar_01)) 100%);

    --roj_01: 177, 6, 6;
    --roj_02: 255, 0, 0;
    --roj_03: 231, 36, 26;
    --b02: linear-gradient(to bottom, rgb(var(--roj_01)) 0%, rgb(var(--roj_02)) 100%);

    --ama_d: 255, 181, 15;
    --ama_m: 255, 224, 74;
    --ama_n: 237, 255, 15;
    --b03: linear-gradient(to bottom, rgb(var(--ama_d)) 0%, rgb(var(--ama_m)) 100%);

    --verde: 108, 255, 0;

    --b04: linear-gradient(to bottom,  rgba(10,2,4,1) 0%,rgba(68,68,68,1) 100%);
}

::selection {
    color: rgb(var(--blanco), 1);
    background: rgb(var(--ama_d), .3);
}
::-moz-selection {
    color: rgb(var(--blanco), 1);
    background: rgb(var(--ama_d), .3);
}
::-webkit-selection {
    color: rgb(var(--blanco), 1);
    background: rgb(var(--ama_d), .3);
}

/******************************
*   Reset
******************************/
*{
    border: 0px;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding: 70px;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Futura Std';
    font-weight: normal;
    font-style: normal;
    line-height: 1.4;
    font-size: 16px;
    color: rgb(var(--negro)); 
}
figure {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
figure img { margin: 0 auto; }
.mask {
    overflow: hidden;
    border-radius: 20px;
}
.img__ab img { position: absolute; }
.img img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a, a:link, a:hover, a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
ul,
ol {
    margin: 0;
    padding: 0;
    padding-inline-start: 20px;
}
li + li { margin-top: 15px; }
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 800;
    font-style: normal;
}
input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 10px;
    color: rgb(var(--blanco));
    background: transparent;
    border-radius: 16px;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 1px solid;
}
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    resize: none;
}
/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: rgb(var(--blanco));
  -webkit-box-shadow: 0 0 0px 1000px rgb(var(--negor)) inset;
  transition: background-color 5000s ease-in-out 0s;
  border: 1px solid rgb(var(--blanco));
}
input::placeholder,
textarea::placeholder { color: rgba(var(--blanco), .8); }
button { background: transparent; }
input:focus,
select:focus,
textarea:focus,
button:focus { outline: none; }

label {
    margin: 0;
    font-weight: normal;
    font-weight: 800;
    text-transform: uppercase;
}

p { margin: 0; }
* + p,
* + ol,
* + ul { margin-top: 20px; }
p + div,
div + p,
p + figure,
figure + p { margin-top: 30px; }
ol + *,
ul + *,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 { margin-top: 40px; }

li::marker,
li > ul > li::marker { color: rgba(var(--ama_d), 1); }
li > ul > li::marker { color: rgba(var(--ama_d), 1); }

table { width: 100%; }

/******************************
*   Loader
******************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(var(--negro));
    z-index: 100000;
}
.load__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.bg__load {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ff5000;
}
.loader::before {
    content: '';
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    height: 20px;
    background: url('../img/texture-bot.svg') bottom center;
    background-size: 900px;
    background-repeat: repeat-x;
}
.bg__load::before {
    content: '';
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    height: 20px;
    background: url('../img/texture-bot-color.svg') bottom center;
    background-size: 900px;
    background-repeat: repeat-x;
}

/******************************
*   General
******************************/
body {
    background: #ff5000;
    color: rgb(var(--negro));
    position: relative;
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bg-page.webp');
    background-size: 100%;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: -1;
}
.mancha {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    min-width: 450px;
    mix-blend-mode: color-dodge;
}
.gafitti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
    background: url('../img/bg-grafitti.svg') center;
    background-size: 1000px 700px;
}

.wrapper {
    position: relative;
    z-index: 1;
}
main {
    min-height: calc(100vh - 72px);
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 5;
}
main section {
    width: 100%;
    position: relative;
    padding: 60px 0;
}

/* Head Section */
.h__section + *,
* + .h__section { margin-top: 40px; }
.h__section { text-align: center; }
.h__section > * + * { margin-top: 20px; }
.title {
    font-size: 26px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-style: italic;
    margin-left: auto;
    margin-right: auto;
    max-width: 620px;
}
.title .fa-user-check {
    color: rgb(var(--verde));
}
.h__section p {
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
}

/* CTA */
* + .c__cta { margin-top: 40px; }
.c__cta + .c__cta { margin-top: 30px; }
.c__cta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 20px;
}
.cta,
a.cta {
    display: inline-flex;
    gap: 18px;
    justify-content: center;
    align-items: baseline;
    white-space: nowrap;
    min-width: 180px;
    text-align: center;
    color: rgb(var(--blanco));
    line-height: 1;
    padding: 14px 20px;
    border-radius: 14px;
    position: relative;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cta > i {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}
.c__cta .cta__01,
a.cta__01, 
.cta__01 { background: var(--b01); }
.c__cta .cta__02,
a.cta__02,
.cta__02 { background: var(--b02); }
.c__cta .cta__03,
a.cta__03,
.cta__03 {
    color: rgb(var(--negro));
    background: var(--b03);
}
.c__cta .cta__04,
a.cta__04,
.cta__04 {
    padding: 0;
    display: inline-block;
    font-weight: normal;
    text-transform: inherit;
    gap: inherit;
    font-style: normal;
}
.cta__04 span {
    color: rgb(var(--ama_d));
    font-weight: 500;
    text-transform: capitalize;
}
.c__cta .cta__05,
a.cta__05, 
.cta__05 { background: var(--b04); }

.cta[disabled] {
    filter: grayscale(1);
    pointer-events: none;
}

/* Box */
.cont__box {
    position: relative;
    color: rgb(var(--blanco));
    width: calc(100% - 20px);
    min-height: calc(100vh - 192px);
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.cont__box > * {
    grid-area: 1 / 1 / 2 / 2;
    width: 100%;
    min-width: 0;
}
.box__bg {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.text__mid {
    background: url('../img/bg-texture-02.svg') center;
    background-size: 100%;
    height: 100%;
    margin: -2px 0;
    position: relative;
}
.box__info {
    position: relative;
    padding: 40px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}
.pared {
    position: absolute;
    top: -40px;
    left: 5%;
    right: 5%;
    bottom: -40px;
    -webkit-mask-image: linear-gradient(to top, rgba(var(--negro), 0) 1%, rgba(var(--negro), 1) 20%);
    mask-image: linear-gradient(to top, rgba(var(--negro), 0) 1%, rgba(var(--negro), 1) 20%);
}
.pared > div {
    -webkit-mask-image: linear-gradient(to bottom, rgba(var(--negro), 0) 1%, rgba(var(--negro), 1) 20%);
    mask-image: linear-gradient(to bottom, rgba(var(--negro), 0) 1%, rgba(var(--negro), 1) 20%);
}
.pared > div figure {
    -webkit-mask-image: linear-gradient(to left, rgba(var(--negro), 0) 1%, rgba(var(--negro), 1) 20%);
    mask-image: linear-gradient(to left, rgba(var(--negro), 0) 1%, rgba(var(--negro), 1) 20%);
}
.pared > div figure img {
    -webkit-mask-image: linear-gradient(to right, rgba(var(--negro), 0) 1%, rgba(var(--negro), 1) 20%);
    mask-image: linear-gradient(to right, rgba(var(--negro), 0) 1%, rgba(var(--negro), 1) 20%);
}
.pared > div,
.pared > div figure,
.pared > div figure img {
    width: 100%;
    height: 100%;
}
.pared > div figure img {
    object-fit: contain;
    object-position: center;
}
.mancha__box,
.grafitti__box {
    position: absolute;
    z-index: 1;
}
.mancha__box {
    max-width: 300px;
    min-width: 250px;
    width: 30%;
    top: -160px;
    right: 0;
}
.grafitti__box {
    width: 20%;
    min-width: 200px;
    bottom: 0;
    right: 80%;
}

/* BG Manchas */
.bg__manchas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.cont__manchas {
    width: 50%;
    height: 100%;
    /* border: 1px solid; */
}
.man {
    position: absolute;
    min-width: 40px;
}
.man figure {
    max-width: 10vh;
    width: 100%;
}
.man figure img {
    width: 100%;
    max-width: inherit;
}
.man__01 .man01 {
    width: 5%;
    top: 9%;
    left: 5%;
}
.man__01 .man02 {
    width: 3.4%;
    top: 5%;
    left: 21.6%;
}
.man__01 .man03 {
    width: 4.4%;
    top: 30%;
    left: 8.6%;
}
.man__01 .man04 {
    width: 3%;
    top: 32%;
    left: 19.6%;
}
.man__01 .man05 {
    width: 7%;
    top: 49%;
    left: 1%;
}
.man__01 .man06 {
    width: 3%;
    top: 57%;
    left: 12.1%;
}
.man__01 .man07 {
    width: 5%;
    top: 51%;
    left: 22.4%;
}
.man__01 .man08 {
    width: 4%;
    top: 81%;
    left: 8.4%;
}
.man__01 .man09 {
    width: 5%;
    top: 80%;
    left: 22.1%;
}

.man__02 .man01 {
    width: 2.5%;
    top: 3%;
    right: 7%;
}
.man__02 .man02 {
    width: 5.3%;
    top: 7.8%;
    right: 15.9%;
}
.man__02 .man03 {
    width: 2.9%;
    top: 20%;
    right: 25.5%;
}
.man__02 .man04 {
    width: 2.9%;
    top: 38.5%;
    right: 20.5%;
}
.man__02 .man05 {
    width: 4%;
    top: 30.1%;
    right: 4.2%;
}
.man__02 .man06 {
    width: 4.3%;
    top: 49.5%;
    right: 11.1%;
}
.man__02 .man07 {
    width: 4.1%;
    top: 58.5%;
    right: 23.3%;
}
.man__02 .man08 {
    width: 5.8%;
    top: 67.5%;
    right: 1%;
}
.man__02 .man09 {
    width: 4.5%;
    top: 77.5%;
    right: 10.2%;
}
.man__02 .man10 {
    width: 5.5%;
    top: 84.5%;
    right: 31%;
}

/* Grid */
.grid {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Card Box */
.card__box {
    padding: 15px;
    height: 100%;
    background: rgb(var(--blanco));
    color: rgb(var(--negro));
    border-radius: 14px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
}
.box__fil { position: relative; }
.box__fil a { display: block; }

.fil__01 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.col__01 figure {
    width: 100%;
    overflow: hidden;
    padding-top: 60%;
    border-radius: 12px;
    position: relative;
}
.col__01 figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.fil__info a > * + *,
.fil__info > * + * { margin-top: 10px; }
.fil__info h3 { font-size: 20px; }
.fil__info p { line-height: 1.2; }
.fil__02::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: rgba(var(--negro), .03);
}
.cont__react {
    position: relative;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.emoticons__group {
    display: flex;
    gap: 6px;
    position: relative;
    z-index: 1;
}
.emoti {
    width: 20%;
    text-align: center;
}
.emoti > div {
    display: inline-flex;
    width: 33px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    gap: 6px;
    padding: 6px 2px;
    border-radius: 100px;
    background: rgba(var(--negro), .05);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border: 1px solid rgba(var(--negro), 0);
}
.emoti figure {
    width: 100%;
    min-width: 25px;
    height: 25px;
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.emoti figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.emoti span {
    font-family: 'Futura Std Condensed';
    font-size: 14px;
    line-height: 1;
}
.emoti:hover figure,
.emoti.active > div figure {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.emoti.active > div {
    background: rgba(var(--negro), .1);
    border: 1px solid rgba(var(--negro), .2);
}


/* Paginador */
* + .cont__pag  { margin-top: 60px; }
.cont__pag {
    text-align: center;
    color: rgb(var(--blanco));
}
.pag__fil > * + * { margin-top: 15px; }
.fil__cont p {
    opacity: .8;
    color: rgb(var(--negro));
}
.paginador {
    list-style: none;
    padding-inline-start: 0;
    display: flex;
    flex-flow: row wrap;
    gap: 4px;
    justify-content: center;
}
.paginador li { margin: 0; }
.paginador li > * {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    line-height: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(var(--negro));
}
.paginador li.active > *,
.paginador li:hover > * { 
    background: rgb(var(--ama_m));
    color: rgb(var(--negro));
}
.paginador li.disabled {
    cursor: not-allowed;
    opacity: .5;
    pointer-events: none;
}
button[aria-label="Next »"],
li[aria-label="Next »"] > *,
button[aria-label="« Previous"],
li[aria-label="« Previous"] > * {
    background: white !important;
    color: rgb(var(--negro)) !important;
}

/******************************
*   Home
******************************/
#home main { overflow: hidden; }
/* Inicio */
.inicio { padding-bottom: 100px; }
.inicio .container { position: relative; }
.m__ini {
    position: absolute;
    top: -60px;
    right: 0;
    width: 25%;
    min-width: 300px;
}
.m__ini01 {
    position: absolute;
    top: 70%;
    right: 0;
    width: 100%;
}
.cont__master {
    position: relative;
    max-width: 70vh;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.cont__master > div + div { margin-top: 40px; }
.master__name {
    width: 90%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.name__word {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.word__02 {
    width: 63%;
    margin-top: -6%;
    -webkit-transform: translateX(3%);
    -moz-transform: translateX(3%);
    -ms-transform: translateX(3%);
    -o-transform: translateX(3%);
    transform: translateX(3%);
}
.cont__bottle {
    width: 80%;
    margin-left: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    filter: drop-shadow(0px 0px 15px rgb(var(--negro), .6));
    will-change: filter;
}
.lata { width: 50%; }
.lata > div { margin: auto; }
.lata__01 > div {
    width: 60%;
    -webkit-transform: translate(30%, 8%) rotate(-30deg);
    -moz-transform: translate(30%, 8%) rotate(-30deg);
    -ms-transform: translate(30%, 8%) rotate(-30deg);
    -o-transform: translate(30%, 8%) rotate(-30deg);
    transform: translate(30%, 8%) rotate(-30deg);
}
.lata__02 > div {
    width: 55%;
    -webkit-transform: translate(-40%, -15%) rotate(20deg);
    -moz-transform: translate(-40%, -15%) rotate(20deg);
    -ms-transform: translate(-40%, -15%) rotate(20deg);
    -o-transform: translate(-40%, -15%) rotate(20deg);
    transform: translate(-40%, -15%) rotate(20deg);
}
.tapa {
    position: absolute;
    z-index: 1;
    width: 100%;
    top: -12%;
    left: 0;
    /* -webkit-transform: rotate(12deg);
    -moz-transform: rotate(12deg);
    -ms-transform: rotate(12deg);
    -o-transform: rotate(12deg);
    transform: rotate(12deg); */
}
.tapa figure {
    -webkit-transform: translate(-66%, -115%) rotate(-40deg);
    -moz-transform: translate(-66%, -115%) rotate(-40deg);
    -ms-transform: translate(-66%, -115%) rotate(-40deg);
    -o-transform: translate(-66%, -115%) rotate(-40deg);
    transform: translate(-66%, -115%) rotate(-40deg);
}
* + .logo__comex { margin-top: 50px; }
.logo__comex {
    max-width: 200px;
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    filter: drop-shadow(0px 0px 10px rgb(var(--negro), .3));
    will-change: filter;
}
.name__ele { position: absolute; }
.ele__man {
    width: 50%;
    top: 70%;
    left: -5%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.ele__gra {
    width: 50%;
    top: 70%;
    right: -10%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* Dinamica */
.dinamica { color: rgb(var(--blanco)); }
.m__din {
    position: absolute;
    width: 8%;
    min-width: 80px;
}
.m__din figure {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
}
.mdin01 {
    left: 0;
    bottom: 0;
    z-index: 10;
}
.mdin02 { right: 0; }
.mdin01 figure { transform-origin: 100% 100%; }
.mdin02 figure { transform-origin: 0 0; }
.dinamica .container { position: relative; }
.bg__din {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    perspective: 900px;
    transform-style: preserve-3d;
}
.bg__din::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 90%;
    background: rgb(var(--negro));
    top: 50%;
    right: -200px;
    -webkit-transform: translateY(-50%) rotateY(27deg);
    -moz-transform: translateY(-50%) rotateY(27deg);
    -ms-transform: translateY(-50%) rotateY(27deg);
    -o-transform: translateY(-50%) rotateY(27deg);
    transform: translateY(-50%) rotateY(27deg);
}
.bg__din > div {
    background: rgb(var(--negro));
    height: calc(100% - 120px);
    position: absolute;
    width: 100%;
    z-index: 1;
}
.bg__top::before,
.bg__bot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    background-size: 900px;
    background-repeat: repeat-x;
}
.bg__top::before {
    top: -19px;
    background-image: url('../img/texture-top.svg');
    background-position: top center;
}
.bg__bot::after {
    bottom: -19px;
    background-image: url('../img/texture-bot.svg');
    background-position: bottom center;
}
.bg__top {
    top: 0px;
    -webkit-transform: skewY(4deg);
    -moz-transform: skewY(4deg);
    -ms-transform: skewY(4deg);
    -o-transform: skewY(4deg);
    transform: skewY(4deg);
}
.bg__bot {
    bottom: 0px;
    -webkit-transform: skewY(-4deg);
    -moz-transform: skewY(-4deg);
    -ms-transform: skewY(-4deg);
    -o-transform: skewY(-4deg);
    transform: skewY(-4deg);
}
.dinamica .h__section .title span { color: rgb(var(--nar_xd)); }
.logos__cont {
    margin-left: auto;
    margin-right: auto;
    max-width: 220px;
    width: 80%;
    display: flex;
    gap: 20px;
}
.logos__cont span {
    width: 2px;
    min-width: 2px;
    background: rgb(var(--nar_xd));
}
.logos__cont figure {
    display: flex;
    align-items: center;
}
.cont__dina {
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
    text-shadow: 0px 0px 10px rgb(var(--negro), 1);
}
.cont__dina span { color: rgb(var(--nar_xd)); }
.cont__dina p {
    font-size: 15px;
    color: rgb(var(--nar_xd));
    line-height: 1.2;
}
.cont__dina p strong {
    font-size: 16px;
    color: rgb(var(--blanco));
}
.dina__fil {
    position: relative;
    z-index: 5;
}
.fi__06 { z-index: 1; }
.paso__number {
    font-size: 28px;
    font-weight: 800;
    font-style: italic;
    line-height: 1;
}
.cont__paso strong { font-style: italic; }
.paso__number + * { margin-top: 10px; }
.graf__dina { position: relative; }
.graf__bg {
    position: absolute;
    width: 220%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: 1fr;
}
.graf__bg > * { grid-area: 1 / 1 / 2 / 2; }
.graf__dina .pared {
    bottom: initial;
    position: relative;
    top: initial;
    left: initial;
    right: initial;
    bottom: initial;
}
.graf__mancha {
    width: 100%;
    mix-blend-mode: difference;
    display: flex;
    justify-content: center;
    align-items: center;
}
.graf__mancha > * { width: 50%; }
.lata__dina {
    width: 100%;
    position: relative;
}
.lata__dina > div {
    width: 30%;
    margin: 0 auto;
    -webkit-transform: translateX(-40%) rotate(25deg);
    -moz-transform: translateX(-40%) rotate(25deg);
    -ms-transform: translateX(-40%) rotate(25deg);
    -o-transform: translateX(-40%) rotate(25deg);
    transform: translateX(-40%) rotate(25deg);
    filter: drop-shadow(0px 0px 15px rgb(var(--negro), .6));
    will-change: filter;
}
.dina__tapa {
    position: absolute;
    top: -12%;
}
.dina__tapa figure {
    -webkit-transform: translate(132%, 60%) rotate(25deg);
    -moz-transform: translate(132%, 60%) rotate(25deg);
    -ms-transform: translate(132%, 60%) rotate(25deg);
    -o-transform: translate(132%, 60%) rotate(25deg);
    transform: translate(132%, 60%) rotate(25deg);
}

/* Premio */
#premios {
    overflow: hidden;
    padding-bottom: 30px;
    z-index: 1;
}
.gra__pre {
    position: absolute;
    width: 5%;
    right: 0;
    bottom: 5%;
}
.gra__pre figure {
    -webkit-transform: scale(3) rotate(-15deg) translateX(20%);
    -moz-transform: scale(3) rotate(-15deg) translateX(20%);
    -ms-transform: scale(3) rotate(-15deg) translateX(20%);
    -o-transform: scale(3) rotate(-15deg) translateX(20%);
    transform: scale(3) rotate(-15deg) translateX(20%);
    transform-origin: 0% 90%;
}
.premio__info { position: relative; }
.prem__fil { text-align: center; }
.gran__premio {
    display: inline-block;
    -webkit-transform: rotate(-5deg) skewY(4deg);
    -moz-transform: rotate(-5deg) skewY(4deg);
    -ms-transform: rotate(-5deg) skewY(4deg);
    -o-transform: rotate(-5deg) skewY(4deg);
    transform: rotate(-5deg) skewY(4deg);
}
.gran__premio > div{
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    display: flex;
    filter: drop-shadow(-10px 0px 10px rgb(var(--negro), .3));
    will-change: filter;
}
.gran__premio span {
    display: block;
    line-height: 1;
    color: rgb(var(--blanco));
    text-align: left;
}
.prem__num span {
    font-size: 160px;
    color: rgb(var(--ama_m));
}
.prem__tex {
    padding-top: 12px;
    margin-left: -20px;
}
.prem__tex span:nth-child(1) { font-size: 50px; }
.prem__tex span:nth-child(2) {
    font-size: 35px;
    margin-left: -6px;
}
.text__prem > * {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.text__01 {
    background: url('../img/cinta.webp') center;
    background-size: 100% 100%;
    padding: 30px 15px 40px;
    font-weight: 600;
    color: rgb(var(--blanco));
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
}
.text__02 {
    width: 80%;
    background: url('../img/cinta_2.webp') center;
    background-size: 100% 100%;
    padding: 15px 40px;
    color: rgb(var(--ama_m));
    text-transform: uppercase;
    -webkit-transform: rotate(2deg);
    -moz-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    -o-transform: rotate(2deg);
    transform: rotate(2deg);
}
.cont__hand {
    width: 100%;
    max-width: 64vh;
    margin: 0 0 0 auto;
}
.hand__paint {
    padding-top: 140%;
    position: relative;
    filter: drop-shadow(0px 0px 20px rgb(var(--negro), .3));
    will-change: filter;
}
.hand__paint figure { position: absolute; }
.hand__mancha {
    width: 80%;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.hand {
    top: 0;
    left: 15px;
    width: 100%;
}
.prem__discl {
    text-align: center;
    color: rgb(var(--blanco));
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
.prem__discl::before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 150%;
    bottom: -32px;
    opacity: .7;
    z-index: -1;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: linear-gradient(to bottom,  rgba(139,42,0,0) 0%,rgba(139,42,0,1) 100%);
    will-change: filter;
}

/******************************
*   Formulario
******************************/
.cont__form {
    margin-left: auto;
    margin-right: auto;
}
.form__large { width: 100%; }
.form__medium { max-width: 600px; }
.form__small { max-width: 400px; }
.cont__campos {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: column;
    display: flex;
    gap: 30px;
}
.form__small .cont__campos { flex-direction: column; }
.campo.c__cta { margin-top: 0; }
.campo > div input,
.campo > div textarea { padding-left: 40px; }
.campo > div select {
    padding-left: 40px;
    padding-right: 25px;
}
.campo label + div { margin-top: 8px; }
.campo > div { position: relative; }
.icon__camp,
.icon__arrow {
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    font-size: 18px;
    pointer-events: none;
}
.campo__text > div,
.campo__text > div textarea { min-height: 150px; }
.campo__text .icon__camp { height: 40px; }
.icon__camp {
    left: 0;
    color: rgba(var(--blanco), .5);
}
.icon__arrow {
    right: 0;
    width: 30px;
    color: rgba(var(--blanco), 1);
}
.icon__camp > *,
.icon__arrow > * {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.campo__cols {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    gap: 20px;
}
.campo__cols > * {
    width: calc(33.33% - 13.4px);
    position: relative;
}
.campo > div.campo__cols select { padding-left: 12px; }
.cont__check {
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
}
* + .mesage__error {
    margin-top: 8px;
    display: none;
}
.mesage__error { color: rgb(var(--ama_n)); }
.chek__fil {
    display: flex;
    gap: 6px;
}
.chek__fil label {
    font-weight: normal;
    text-transform: inherit;
    cursor: pointer;
    color: rgb(var(--blanco));
}
.chek__fil label a {
    text-decoration: underline;
    color: rgb(var(--ama_d));
}
.opt__check {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.opt__check > * {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    grid-area: 1 / 1 / 2 / 2;
    cursor: pointer;
}
.opt__check > input {
    padding: 0 !important;
    margin: 0;
    background: 0;
}
.opt__check > i {
    background: rgb(var(--blanco));
    pointer-events: none;
}
.opt__check > i::before {
    display: block;
    content: "\f00c";
    font-weight: 900;
    font-family: "Font Awesome 6 Pro";
    color: rgb(var(--blanco), 1);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
.opt__check > input:checked + i { background: rgb(var(--nar_02)); }
.opt__check > input:checked + i::before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.no__account {
    margin-top: 40px;
    text-align: center;
}
.no__account a {
    text-decoration: underline;
    color: rgb(var(--ama_d));
    font-weight: 700;
}

/******************************
*   Perfil
******************************/
#perfil hr {
    margin: 40px auto;
    max-width: 600px;
    opacity: .2;
}
.info__user > * + * { margin-top: 30px; }
.info__user { text-align: center; }
.user__data span { display: block; }
.user__anem {
    font-size: 20px;
    color: rgb(var(--ama_d));
    font-weight: 700;
    text-transform: uppercase;
}
.btn__delete a span { text-decoration: underline; }
.btn__delete a i { color: rgb(var(--ama_d)); }

.text__perf {
    color: rgb(var(--ama_d));
    text-align: center;
    font-weight: 500;
}
.h__parti .title { font-size: 22px; }
.cont__parti > * + * { margin-top: 30px; }
.text__parti {
    text-align: center;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.cont__parti .emoti { pointer-events: none; }


/******************************
*   Participacion
******************************/
.fomr__upload {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}
.cont__image {
    padding: 15px;
    background: rgb(var(--blanco));
    border-radius: 14px;
    height: 100%;
}
.image__parti {
    border-radius: 14px;
    overflow: hidden;
    padding-top: 60%;
    position: relative;
    cursor: pointer;
    background: rgba(var(--negro), .08);
    height: 100%;
}
.image__parti::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--negro));
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    pointer-events: none;
}
.image__parti:hover::after { opacity: .2; }
.image__parti > * { position: absolute; }
.text__img {
    left: 15px;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: rgba(var(--negro), .4);
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
}
.text__img > * + *{ margin-top: 30px; }
.text__img i {
    display: block;
    font-size: 28px;
}
.image__graf,
.image__graf img,
.image__parti input {
    width: 100%;
    height: 100%;
}
.image__graf {
    top: 0;
    left: 0;
    pointer-events: none;
}
.image__graf img {
    object-fit: cover;
    object-position: center;
}
.image__parti input:focus { outline: none; }
.image__parti input {
    top: 0;
    left: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    color: transparent;
    cursor: pointer;
    padding: 0 !important;
    opacity: 0;
}
.image__parti input::file-selector-button { opacity: 0; }

/******************************
*   Gracias
******************************/
.cont__latas {
    display: flex;
    max-width: 200px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}


/******************************
*   Galería
******************************/
#galeria .header { filter: drop-shadow(0px 5px 5px rgb(var(--negro), .4)); }
#galeria main {
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    overflow: hidden;
}
.head__galle {
    color: rgb(var(--blanco));
    background: rgb(var(--negro));
    position: relative;
}
.head__galle::after {
    content: '';
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    height: 20px;
    background: url('../img/texture-bot.svg') bottom center;
    background-size: 900px;
    background-repeat: repeat-x;
    z-index: -1;
}
.m__gale__01 {
    position: absolute;
    top: -30px;
    left: 10%;
    width: 20%;
    min-width: 200px;
}
.m__gale__02 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 15%;
    min-width: 100px;
}
.head__galle .container {
    position: relative;
    width: 100%;
    padding: 0;
}

#galeria .cont__master { max-width: 400px; }
#galeria .master__name { width: 75%; }
#galeria .cont__bottle {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
#galeria .cont__bottle .lata { width: 18%; }
.quesea {
    margin-left: auto;
    margin-right: auto;
    max-width: 350px;
}
.swiper { overflow: visible; }
.cont__detail {
    margin-right: auto;
    margin-left: auto;
    max-width: 100vh;
    width: 100%;
}
#galeria-detalle .col__01 figure { padding-top: 0; }
#galeria-detalle .col__01 figure img { position: relative; }
.cont__share {
    /* display: flex;
    gap: 10px;
    align-items: center; */
    margin-top: 20px;
    text-align: center;
    filter: drop-shadow(0px 0px 5px rgb(var(--ama_n), 1));
    will-change: filter;
}
.cont__share strong {
    display: block;
    margin-bottom: 6px;
}
.cont__share .st-btn { display: inline-block!important; }

/******************************
*   Faqs
******************************/
.cont__acordeon {
    margin-right: auto;
    margin-left: auto;
    max-width: 850px;
}
.opt__info { display: none; }
.acor__opt + .acor__opt { margin-top: 10px; }
.acor__opt {
    filter: drop-shadow(0px 5px 5px rgb(var(--nar_xd), .4));
    will-change: filter;
}
.opt__title {
    padding: 15px;
    background: rgb(var(--negro));
    color: rgb(var(--ama_d));
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.opt__title h4 {
    font-weight: normal;
    font-size: 18px;
}
.arrw {
    width: 20px;
    height: 20px;
    position: relative;
}
.arrw::before,
.arrw::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentcolor;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.arrw::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -moz-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    -o-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}
.active .arrw::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}
.opt__info {
    padding: 15px;
    background: rgb(var(--blanco), .6);
}

/******************************
*   Legal
******************************/
.info__legal {
    margin-right: auto;
    margin-left: auto;
    max-width: 900px;
}
.info__legal h2,
.info__legal h3,
.info__legal h4,
.info__legal h5 {
    font-size: 18px;
    font-weight: 500;
    color: rgb(var(--ama_d));
}
.cont__tab {
    width: 100%;
    overflow: auto;
}
.cont__tab > div table {
    width: 100%;
    min-width: 700px;
}
.cont__tab table thead th,
.cont__tab table td { text-align: center; }
.cont__tab table thead th {
    color: rgb(var(--negro));
    background: rgb(var(--ama_d));
    padding: 12px 6px;
}
.cont__tab table tbody td {
    padding: 12px 6px;
    position: relative;
}
.cont__tab table tbody tr:nth-child(odd) td { background: rgba(var(--blanco), .15); }

/******************************
*   LB
******************************/
.cont__lb {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(var(--negro), .7);
    z-index: 1000;
    overflow: auto;
    display: none;
}
.lb__center {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
}
.btn__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.btn__close > * {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.box__conten {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}
.box {
    background: rgb(var(--negro), 1);
    color: rgb(var(--blanco));
    border: 1px solid rgba(var(--blanco), 1);
    border-radius: 16px;
    padding: 50px 20px;
    position: relative;
}

/******************************
*   Mensaje Error
******************************/
.message { color: rgb(var(--blanco)); }
.icon__sup + * { margin-top: 10px; }
.xcla {
    font-size: 60px;
    text-align: center;
    line-height: 1;
    filter: drop-shadow(0px 5px 5px rgb(var(--negro), .4));
}
.xcla div {
    display: inline-block;
    position: relative;
}
.xcla div i { line-height: 1; }
.xcla div i:nth-child(1) {
    --ama: 255, 230, 0;
    color: rgb(var(--ama));
}
.xcla div i:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: rgb(var(--negro));
    font-size: 30px;
}
.message .h__section {
    filter: drop-shadow(0px 5px 5px rgb(var(--negro), .4));
    will-change: filter;
}
.message .title { font-size: 40px; }
.message .h__section p { font-size: 20px; }

/******************************
*   Mobile
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {
/* Dinamica */

/* Legal */
.cont__tab { background: rgba(var(--blanco), .1); }
.cont__tab > div { padding: 15px; }
.cont__tab > div table {
    margin-right: 15px;
    display: inline-table;
}

}
@media (min-width : 680px) {
/* Box */
.cont__box { width: 90%; }
.box__info { padding: 60px 30px; }

/* Grid */
.grid {
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    gap: 40px 30px;
}
.item__grid { width: calc(50% - 15px); }

/* Card Box */
.item__grid .fil__info h3,
.swiper .fil__info h3 { font-size: 14px; }
.item__grid .fil__info p,
.swiper .fil__info p { font-size: 12px; }

/* Inicio */
.cont__master > div + div { margin-top: 0px; }
.logo__comex {
    position: absolute;
    right: 7%;
    bottom: 12%;
    width: 20%;
    max-width: initial;
    margin: inherit;
    margin: 0;
}

/* Danimica */
.cont__dina {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.fi__01 { grid-area: 1 / 2 / 2 / 4; }
.fi__02 { grid-area: 2 / 1 / 3 / 3; }
.fi__03 { grid-area: 2 / 3 / 3 / 5; }
.fi__04 { grid-area: 3 / 1 / 4 / 3; }
.fi__05 { grid-area: 3 / 3 / 4 / 5; }
.fi__06 { grid-area: 4 / 2 / 5 / 4; }
.fi__01 {
    margin-right: -25%;
    margin-left: -25%;
}
.cont__paso { text-align: left; }
.mdin01 { z-index: 0; }

/* Premio */
.gran__premio > div { filter: drop-shadow(-10px 0px 15px rgb(var(--negro), .6)); }

/* Registro */
.cont__check { justify-content: center; }


}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
/* Box */
.cont__box .container { width: 100%; }

/* Premios */
.premio__info > * + * { margin-top: 30px; }

}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
/* Head Section */
.title { font-size: 32px; }
.message .title { font-size: 80px; }

/* Grid */
.item__grid { width: calc(33.33% - 20px); }

/* Inicio */
.logo__comex { width: 16%; }
.cont__bottle { margin-right: auto; }

/* Premio */
#premios { margin-top: -50px; }
.premio__info {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}
.prem__fil { width: 50%; }
.prem__discl::before { height: 300%; }

/* Registro */
.form__large .cont__campos {
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
}
.form__large .cont__campos .campo.cont__check,
.form__large .cont__campos .campo.c__cta { width: 100%; }
.form__large .cont__campos .campo { width: calc(50% - 15px); }

/* Participacion */
.fomr__upload .cont__campos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.fomr__upload .cont__campos .campo:nth-child(1) { grid-area: 1 / 1 / 7 / 2; }
.fomr__upload .cont__campos .campo:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.fomr__upload .cont__campos .campo:nth-child(3) { grid-area: 2 / 2 / 7 / 3; }
.fomr__upload .cont__campos .campo:nth-child(4) { grid-area: 7 / 1 / 8 / 3; }
.campo__text > div,
.campo__text > div textarea { height: 100%; }

}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
.hand__paint { padding-top: 114%; }
.cont__parti .item__grid { width: calc(50% - 15px); }

}
@media (min-width : 768px) and (max-width : 900px) {
}
@media (max-width : 991px) {
/* Inicio */

/* Dinamica */

}
@media (min-width : 992px) {
.gafitti { background-size: 100%; }

/* Box */
.grafitti__box { right: 90%; }

/* Grid */
.item__grid { width: calc(25% - 22.5px); }

/* Inicio */
.m__ini { right: 5%; }

/* Dinamica */
.cont__dina {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.fi__01 { grid-area: 1 / 2 / 2 / 3; }
.fi__02 { grid-area: 2 / 1 / 3 / 2; }
.fi__03 { grid-area: 2 / 3 / 3 / 4; }
.fi__04 { grid-area: 4 / 1 / 5 / 2; }
.fi__05 { grid-area: 4 / 3 / 5 / 4; }
.fi__06 { grid-area: 3 / 2 / 4 / 3; }
.graf__dina {
    margin-top: -10%;
    margin-bottom: -20%;
}

/* Premios */
#premios { margin-top: -100px; }
.prem__num span { font-size: 190px; }
.prem__tex span:nth-child(1) { font-size: 50px; }
.text__prem {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.cont__hand { margin: 0 auto; }
.hand__paint { padding-top: 124%; }

/* Gracias */
.cont__latas {
    max-width: 100%;
    width: 100%;
}
.cont__latas .lata {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cont__latas .lata__01 {
    width: 15%;
    top: 50%;
    left: 3%;
}
.cont__latas .lata__02 {
    width: 15%;
    top: 60%;
    right: 3%;
}

}
/* Large Devices, Wide Screens */
@media (min-width : 768px) and (max-width : 1200px) {
}
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
@media (min-width : 1200px) {

/* Registro */
.form__large .cont__campos .campo { width: calc(33.33% - 20px); }

}
@media (min-width : 768px) and (max-width : 1379px)  {
/* Box */
.box__info .container { width: 90%; }

}

@media (min-width : 992px) and (max-width : 1300px) {
.cont__parti .item__grid { width: calc(33.33% - 20px); }
}




header ul,
footer ul,
header ol,
footer ol {
    padding-inline-start: 0;
    list-style: none;
}
header li + li,
footer li + li { margin-top: 0; }
header * + ol,
header * + ul,
footer * + ol,
footer * + ul  { margin-top: 0px; }

/******************************
*   Header
******************************/
.header {
    font-weight: normal;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0px;
    z-index: 1000;
    filter: drop-shadow(0px 5px 5px rgb(var(--nar_xd), .4));
    will-change: filter;
}
.cont__menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background: rgb(var(--negro));
    color: rgb(var(--blanco));
}
.cont__menu::after {
    content: '';
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    height: 20px;
    background: url('../img/texture-bot.svg') bottom center;
    background-size: 900px;
    background-repeat: repeat-x;
}
.logo {
    width: 100px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    pointer-events: all;
    filter: drop-shadow(0px 0px 5px rgb(var(--negro), .6));
    will-change: filter;
}
.logo a { display: block; }
.logo a span {
    opacity: 0;
    position: absolute;
    top: -100%;
    left: -100%;
}
.menu nav figure {
    width: 150px;
    margin-left: auto;
    margin-right: auto;
}
.men__opt {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}
.men__opt li a,
.men__opt li button {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
}
.opt__01 { color: rgb(var(--ama_d)); }
.opt__02 { color: rgb(var(--nar_m)); }

/* Btn mobile */
.btn__mob {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 10;
}
.btn__mob > div {
    position: absolute;
    width: 60%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.btn__mob > div span {
    display: block;
    width: 100%;
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.btn__mob > div span i {
    display: block;
    width: 100%;
    height: 2px;
    background: rgb(var(--blanco));
}
.btn__mob > div span + span { margin-top: 6px; }
.btn__mob.active > div span i { background: rgb(var(--ama_d)); }
.btn__mob.active > div span:nth-child(2) {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
}
.btn__mob.active > div span:nth-child(1) {
    -webkit-transform: translate(0px, 8px) rotate(45deg);
    -moz-transform: translate(0px, 8px) rotate(45deg);
    -ms-transform: translate(0px, 8px) rotate(45deg);
    -o-transform: translate(0px, 8px) rotate(45deg);
    transform: translate(0px, 8px) rotate(45deg);
}
.btn__mob.active > div span:nth-child(3) {
    -webkit-transform: translate(0px, -8px) rotate(-45deg);
    -moz-transform: translate(0px, -8px) rotate(-45deg);
    -ms-transform: translate(0px, -8px) rotate(-45deg);
    -o-transform: translate(0px, -8px) rotate(-45deg);
    transform: translate(0px, -8px) rotate(-45deg);
}

/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {
}
@media (min-width : 680px) {
.logo { width: 130px; }

}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 991px) {
.menu {
    --negro: 25, 25, 25;
    position: absolute;
    top: calc(100% - 1px);
    height: calc(100vh - 59px);
    padding-top: 80px;
    left: 0;
    right: 0;
    background: rgb(var(--negro));
    overflow: auto;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
    z-index: -1;
}
.menu.active {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.men__opt li a,
.men__opt li button { font-size: 26px; }

}
/* Medium Devices to Large Devices */
@media (min-width : 992px) {
.btn__mob { display: none; }
.logo { left: 40px; }
.cont__menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    padding: 25px 40px;
}
.men__opt {
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.menu nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

}


/* ----------- iPad Pro ----------- */
/* Portrait and Landscape */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
}

/* Portrait */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {


}

/* Landscape */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
}



