/******************************
*   Tipografias
******************************/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('typo.css');
@import url('all.css');

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

    --crema: 229, 227, 223;
    --ama_01: 255, 215, 50;
    --ama_02: 255, 206, 0;
    --rojo: 223, 32, 39;
    --verde: 36, 211, 102;
    --verde_2: 26, 137, 68;
}
::selection {
    background: rgb(var(--negro), 1);
    color: rgb(var(--ama_01), 1);
}
::-moz-selection {
    background: rgb(var(--negro), 1);
    color: rgb(var(--ama_01), 1);
}
::-webkit-selection {
    background: rgb(var(--negro), 1);
    color: rgb(var(--ama_01), 1);
}

/******************************
*   Reset
******************************/
*{
    border: 0px;
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
    scroll-padding: 64px;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: rgb(var(--negro));
    background: rgb(var(--ama_01));
    font-family: 'Lays';
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 1.2;
    position: relative;
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/trama.webp') center;
    background-size: 1500px;
    mix-blend-mode: overlay;
    will-change: filter;
}
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; }
figure figcaption {
    opacity: 0;
    display: none;
}
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: 700;
    font-style: normal;
}
/* 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(--turquesa), 1);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
input::placeholder,
textarea::placeholder { color: #565656; }
button { background: transparent; }
input:focus,
select:focus,
textarea:focus,
button:focus { outline: none; }

label {
    margin: 0;
    font-weight: normal;
    color: rgb(var(--crema_d));
}

p { margin: 0; }
* + p,
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(--rojo), 1); }
table { width: 100%; }

/******************************
*   Loader
******************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(var(--ama_01));
    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%);
}

/******************************
*   General
******************************/
main {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
    padding-bottom: 30%;
    overflow: hidden;
}
main section {
    width: 100%;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}
/* main section .container { max-width: 100%; } */
main section:nth-of-type(1) { padding-top: 70px; }

/* Head Section */
.h__section + *,
* + .h__section { margin-top: 60px; }
.h__section { text-align: center; }
.title {
    font-size: 26px;
    text-transform: uppercase;
    position: relative;
}
.t__red {
    font-size: 32px;
    color: rgb(var(--rojo));
}
.h__section p {
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
}

/* CTA */
* + .c__cta { margin-top: 40px; }
.c__cta + .c__cta { margin-top: 20px; }
.c__cta {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
}
.cta,
a.cta {
    display: inline-flex;
    white-space: nowrap;
    text-align: center;
    font-weight: 700;
    line-height: 1;
    padding: 12px 20px;
    align-items: baseline;
    gap: 6px;
    border-radius: 10px;
}
a.cta__01,
.cta__01 {
    color: rgb(var(--negro));
    border: 2px solid rgb(var(--negro));
    background: rgb(var(--ama_01));
}
a.cta__02,
.cta__02 {
    color: rgb(var(--blanco));
    background: rgb(var(--verde));
    box-shadow: 0 4px 0px rgb(var(--verde_2));
    text-transform: uppercase;
}

/* Promo Name */
.promo__name { position: relative; }
.promo__name figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.promo__name figure:nth-child(1) { position: relative; }

/* Empaques */
.cont__prod {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 2.5%;
}
.empaque {
    /* filter: drop-shadow(0 0 10px rgb(var(--negro), .3));
    will-change: filter; */
}
.empaque figure {
    will-change: filter;
    position: relative;
    z-index: 1;
}
.empaque figure::before {
    content: '';
    position: absolute;
    filter: blur(2px);
    will-change: filter;
    border-radius: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .6) 50%, rgba(0, 0, 0, 0) 100%);
    filter: blur(2px);
    will-change: filter;
    left: -15%;
    right: -15%;
    height: 3%;
    bottom: -1%;
    z-index: -1;
}
.emp__01 {
    width: 40%;
    z-index: 3;
}
.emp__02 {
    width: 32%;
    z-index: 2;
}
.emp__03 {
    width: 28%;
    z-index: 1;
}
.emp__04 {
    width: 100%;
    margin-top: -14%;
    z-index: 4;
}
.emp__01 figure {
    -webkit-transform: translateX(12%);
    -moz-transform: translateX(12%);
    -ms-transform: translateX(12%);
    -o-transform: translateX(12%);
    transform: translateX(12%);
}
.emp__03 figure {
    -webkit-transform: translateX(-12%);
    -moz-transform: translateX(-12%);
    -ms-transform: translateX(-12%);
    -o-transform: translateX(-12%);
    transform: translateX(-12%);
}
.emp__04 div {
    width: 60%;
    margin: 0 0 0 auto;
}
.emp__04 figure {
    -webkit-transform: rotate(-4deg) translateX(10%);
    -moz-transform: rotate(-4deg) translateX(10%);
    -ms-transform: rotate(-4deg) translateX(10%);
    -o-transform: rotate(-4deg) translateX(10%);
    transform: rotate(-4deg) translateX(10%);
}
.emp__04 figure::before {
    height: 10%;
    bottom: -2%;
    -webkit-transform: rotate(1deg);
    -moz-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    -o-transform: rotate(1deg);
    transform: rotate(1deg);
}
.empaque figure span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.emp__02 span {
    -webkit-mask-image: url('../img/emp02.webp');
    mask-image: url('../img/emp02.webp');
    mask-repeat: no-repeat;
    mask-size: contain;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 30%);
}
.emp__03 span {
    -webkit-mask-image: url('../img/emp03.webp');
    mask-image: url('../img/emp03.webp');
    mask-repeat: no-repeat;
    mask-size: contain;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 30%);
}

/* Redes */
.social__link {
    padding-inline-start: 0px;
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px;
}
.social__link li { margin: 0; }
.social__link li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    font-size: 22px;
    border-radius: 50%;
    background: rgb(var(--negro));
    color: rgb(var(--blanco));
    position: relative;
}

/* Copa */
.cont__copa {
    width: 100%;
    position: relative;
    margin: 0 auto;
}
.bg__copa {
    position: absolute;
    width: 100%;
    padding-top: 100%;
    top: -3%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    will-change: filter;
}
.bg__copa > div {
    width: 400%;
    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%);
    max-width: inherit;
    -webkit-mask-image: radial-gradient( circle, rgba(var(--negro), 1) 0%, transparent 80%);
    mask-image: radial-gradient( circle, rgba(var(--negro), 1) 0%, transparent 80%);
    will-change: filter;
}
.bg__copa > div img { animation: spin 100s linear infinite; }
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.copa {
    position: relative;
    z-index: 1;
}
.copa img {
    width: 100%;
    max-width: inherit;
}

/* Master */
.cont__master {
    display: flex;
    gap: 20px;
    flex-direction: column;
    position: relative;
}
.master__info {
    position: relative;
    z-index: 1;
}
.master__name {
    position: relative;
    z-index: 1;
}
.master__name > * {
    width: 35%;
    max-width: 200px;
    margin: 0 auto;
}
.master__copa { position: relative; }
.c__copa {
    width: 35%;
    max-width: 150px;
    margin: 0 auto;
}
.marter__logo {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 8%;
    min-width: 90px;
    z-index: 1;
}
.info__txt {
    text-transform: uppercase;
    text-align: center;
    color: rgb(var(--blanco));
    position: relative;
}
.info__txt > div {
    padding: clamp(15px, 3vw, 5%);
    position: relative;
    z-index: 1;
}
.txt__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--negro));
    transform-origin: 100% 50%;
    z-index: -1;
}
.info__txt p { font-weight: 700; }
.info__txt p span { display: block; }
.txt__01,
.txt__02 { font-size: 7vw; }
.txt__01 { color: rgb(var(--rojo)); }
.txt__03 {
    color: rgb(var(--ama_02));
    font-size: 8vw;
}
.info__txt p sup {
    top: -1em;
    font-size: 48%;
}
.info__prod {
    position: relative;
    z-index: 1;
    pointer-events: none;
}
.info__prod > * {
    width: 80%;
    max-width: 400px;
}
.txt__fin {
    color: rgb(var(--rojo));
    font-size: 8vw;
}


/******************************
*   Home
******************************/
#home main section:nth-of-type(1) { padding-top: 30px; }
.curve {
    position: absolute;
    width: 100%;
    left: 0;
}
.grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px 40px;
}

/* Inicio */
.inicio .curve { bottom: -1px; }

/* Mecanica */
.mecanica {
    padding: 20px 0;
    background: rgb(var(--ama_02));
}
.mecanica .curve {
    top: calc(100% - 1px);
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.info__point {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.point__graf { position: relative; }
.graf__back {
    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%);
    width: 80%;
    opacity: .5;
}
.graf {
    position: relative;
    margin: 0 auto;
    width: 80%;
}
.graf figure {
    filter:
    drop-shadow(0 0 0 rgb(var(--blanco)))
    drop-shadow(0 0 0 rgb(var(--blanco)))
    drop-shadow(3px 0 0 rgb(var(--blanco)))
    drop-shadow(-3px 0 0 rgb(var(--blanco)))
    drop-shadow(0 3px 0 rgb(var(--blanco)))
    drop-shadow(0 -3px 0 rgb(var(--blanco)));
    will-change: filter;
}
.point__txt {
    position: relative;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgb(var(--blanco));
    font-size: 18px;
}
.txt__t { font-size: 32px; }
.txt__t span { color: rgb(var(--rojo)); }
.note {
    text-align: center;
    font-style: italic;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
}
.disclaimer {
    text-transform: none;
    font-size: 12px;
}

/* Premios */
.premios { padding-top: 120px; }
* + .text__end,
.text__end + * { margin-top: 60px; }
.text__end {
    text-align: center;
    font-size: clamp(22px, 3vw, 44px);
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

/******************************
*   Ganadores
******************************/
canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.winner__image {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
#ganadores .promo__name {
    width: 160px;
    margin-left: auto;
    margin-right: auto;
}
.text__win {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    line-height: 1.4;
}

/******************************
*   Faqs
******************************/
.cont__acordeon {
    margin-right: auto;
    margin-left: auto;
    max-width: 850px;
}
.opt__info { display: none; }
.acor__opt + .acor__opt { margin-top: 15px; }
.opt__title {
    padding: 18px 15px;
    background: rgb(var(--negro));
    color: rgb(var(--blanco), 1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    text-transform: uppercase;
}
.opt__title h4 { 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;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
}

/******************************
*   Legal
******************************/
.countries {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.card {
    background: rgb(var(--blanco));
    padding: 25px;
    border-radius: 12px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.flag {
    height: 20px;
    display: inline-block;
}
.flag img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 680px) {
.countries {
    grid-template-columns: 1fr;
}
}


.info__legal {
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
.info__legal h2,
.info__legal h3,
.info__legal h4,
.info__legal h5 {
    font-size: 18px;
    font-weight: 600;
}
.tab {
    width: 100%;
    overflow: auto;
}
.tab table {
    width: 100%;
    min-width: 700px;
}
.tab table td {
    padding: 6px;
    position: relative;
    z-index: 1;
}
.tab table thead {
    background: rgb(var(--negro), 1);
    color: rgb(var(--blanco), 1);
    font-weight: bold;
}
.tab table tbody tr + tr td { border-top: 1px solid rgb(var(--negro), .2); }
.tab__prod.tab table { min-width: auto; }

/******************************
*   Fin
******************************/
#fin-promo main { padding-bottom:  0; }
/* #fin-promo .footer { padding: 30px 0; } */
#fin-promo .cont__master { position: initial; }

/******************************
*   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) {

.info__point {
    max-width: 400px;
    margin: 0 auto;
}

}
@media (min-width : 680px) {

.title { font-size: 32px; }
.t__red { font-size: 42px; }
.h__section p { font-size: 20px; }

.grid { flex-flow: wrap; }
.item { flex: 0 1 calc((100% - 80px) / 2); }

}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {

.info__txt > div { padding-bottom: 26%; }
.info__prod { margin-top: -22%; }


}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {

.item { flex: 0 1 calc((100% - 80px) / 3); }

/* Master */
.cont__master {
    gap: 0;
    flex-direction: row;
    align-items: center;
}
.master__name {
    position: absolute;
    left: 40%;
    height: 28vh;
    max-height: 33%;
    width: 31%;
    top: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.master__name > * {
    width: 26vh;
    max-width: 50%;
}
.master__copa {
    width: 40%;
    position: unset;
}
.marter__logo {
    position: absolute;
    bottom: 0;
    left: inherit;
    right: 30px;
    width: 8%;
    min-width: 110px;
}
#fin-promo .marter__logo {
    top: 3%;
    bottom: inherit;
    left: inherit;
    min-width: 130px;
}
.master__info { width: 60%; }
.c__copa {
    width: 36vh;
    max-width: 73%;
    margin: 0 auto;
}
.bg__copa > div { width: 300%; }
.master__info {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    -webkit-transform: translateY(10%);
    -moz-transform: translateY(10%);
    -ms-transform: translateY(10%);
    -o-transform: translateY(10%);
    transform: translateY(10%);
}
.master__info > * {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info__txt { padding-right: 50%; }
.txt__bg {
    width: 200%;
    border-top-left-radius: 2vw;
}
.txt__01,
.txt__02 { font-size: 1.8vw; }
.txt__03 { font-size: 2.2vw; }
.info__prod {
    padding-left: 50%;
    padding-right: 3%;
}
.info__prod > * {
    width: 100%;
    max-width: unset;
    -webkit-transform: translateX(-5%);
    -moz-transform: translateX(-5%);
    -ms-transform: translateX(-5%);
    -o-transform: translateX(-5%);
    transform: translateX(-5%);
}
.txt__fin { font-size: 1.8vw; }


#home main section:nth-of-type(1) { padding-top: 3%; }



}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
@media (min-width : 992px) {
}
/* 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) {
}
@media (min-width : 2300px) {
}



/* ----------- iPad ----------- */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min-width: 820px) and (max-width: 834px) and (min-height: 1100px) and (max-height: 1190px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min-width: 768px) and (max-width: 768px) and (min-height: 1024px) and (max-height: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
}





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 {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0px;
    z-index: 1000;
}
.cont__menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    -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));
    filter: drop-shadow(0px 0px 5px rgb(var(--negro), .6));
    will-change: filter;
}
.logo {
    width: 100px;
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: all;
    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: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}
.men__opt li a {
    font-size: 20px;
    display: block;
    text-transform: uppercase;
    line-height: 1;
}

/* 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(--blanco)); }
.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) {
.cont__menu .cta__02 {
    font-size: 14px;
    padding: 12px;
}
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {
}
@media (min-width : 680px) {

}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 991px) {
.cont__menu {
    gap: 0px;
    padding-top: 6px;
    padding-bottom: 10px;
}
.menu {
    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 { font-size: 28px; }

}
/* Medium Devices to Large Devices */
@media (min-width : 992px) {
html { scroll-padding: 74px; }
.btn__mob { display: none; }
.logo {
    width: 130px;
    left: 40px;
}
.cont__menu {
    align-items: baseline;
    -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 15px 25px 40px;
}

.men__opt {
    flex-direction: row;
    align-items: baseline;
    gap: 20px;
}
.menu nav {
    display: flex;
    align-items: center;
    gap: 15px;
}
.menu + * {
    margin-left: 20px;
    font-size: 20px;
}

}

/******************************
*   Footer
******************************/
.footer .container-fluid {
    background: rgb(var(--blanco));
    color: rgb(var(--negro));
    padding: 30px;
    text-align: center;
    position: relative;
}
.bg__lines {
    position: absolute;
    width: 100%;
    bottom: 100%;
    height: 50vw;
    overflow: hidden;
    left: 0;
    z-index: -1;
}
.bg__lines img {
    animation: spin 100s linear infinite;
    -webkit-mask-image: radial-gradient( circle, rgba(var(--negro), 1) 0%, transparent 80%);
    mask-image: radial-gradient( circle, rgba(var(--negro), 1) 0%, transparent 80%);
    will-change: filter;
}
.bg__lines > * {
    width: 120%;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.fil__foo + .fil__foo { margin-top: 40px; }
.packs {
    margin-top: -33%;
    display: flex;
    gap: 2%;
    justify-content: center;
    margin-bottom: 30px;
}
.packs .cont__prod { width: 80%; }
.footer * + ul { margin-top: 20px }
.footer ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px;
}
.legal {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 80%;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-style: normal;
    text-align: center;
    line-height: 1.4;
}
.l__wal {
    display: inline-block;
    width: 80px;
    min-width: 80px;
    margin: 0;
}

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

}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
main { padding-bottom: 30vh; }
.packs {
    margin-top: -30vh;
}
.packs .cont__prod {
    width: 70vh;
    min-width: 390px;
    max-width: 77%;
}

.bg__lines { height: 40vw; }
.bg__lines > * { width: 100%; }



}
/* Medium Devices, Desktops */
@media (min-width : 650px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 992px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (min-width : 1201px) {
}
@media (min-width : 2000px) {
}

