/******************************
*   Tipografias
******************************/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('typo.css');

:root {
    /* Joy */
    --j_bg: #4c00f5;
    --j_ama: #fbff14;
    --j_azu: #00edf3;

    /* Footer */
    --f_bg: #0c2b53;

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

    /* Colores promo */
    --color01: 138, 194, 50;
    --color02: 255, 194, 40;
    --color03: 164, 232, 58;
    --color04: 200, 51, 38;
    --color05: 45, 84, 142;
}
::selection {
    background: rgb(var(--color02), 1);
    color: rgb(var(--color05), 1);
}
::-moz-selection {
    background: rgb(var(--color02), 1);
    color: rgb(var(--color05), 1);
}
::-webkit-selection {
    background: rgb(var(--color02), 1);
    color: rgb(var(--color05), 1);
}

/******************************
*   Reset
******************************/
*{
    border: 0px;
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
    scroll-padding: 62px;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    color: rgb(var(--blanco), 1); 
    font-family: 'Open Sans', sans-serif;
    line-height: 1.4;
}
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; }
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;
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: 'Saker';
    font-weight: normal;
}
input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 0;
    color: rgb(var(--negro), 1);
    -moz-appearance: none;
    -webkit-appearance: none;
}
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}
/* 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(--color02), 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; }
p { margin: 0; }
p + p { margin-top: 20px; }

/******************************
*   Loader
******************************/
.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(var(--color01), 1);
    z-index: 10000;
}
.rueda {
    width: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    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%);
}
.rueda img {
    -webkit-animation: rueda 5s linear infinite;
    -moz-animation: rueda 5s linear infinite;
    -ms-animation: rueda 5s linear infinite;
    -o-animation: rueda 5s linear infinite;
    animation: rueda 5s linear infinite;
}
@-webkit-keyframes rueda  {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/******************************
*	General
******************************/
.wrapper {
    overflow: hidden;
    position: relative;
}
main {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}
main section,
main section .container {
    position: relative;
    z-index: 1;
}
.c__sect {
    position: relative;
    z-index: 1;
}
.c__sect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    background: url('../img/trama.svg') center;
    background-size: 100px;
    opacity: .3;
    z-index: -1;
}
.b__01 { background: rgb(var(--color01), 1); }
.b__02 { background: rgb(var(--color02), 1); }
.b__03 { background: rgb(var(--color03), 1); }
.b__04 { background: rgb(var(--color04), 1); }

.c__01 { color: rgb(var(--color01), 1); }
.c__02 { color: rgb(var(--color02), 1); }
.c__03 { color: rgb(var(--color03), 1); }

.t__sect {
    text-align: center;
    margin-bottom: 60px;
}
.t__sect h3 {
    display: inline-block;
    position: relative;
    font-size: 40px;
    text-transform: uppercase;
    padding: 0 60px;
}
.t__sect h3::before,
.t__sect h3::after {
    content: '';
    position: absolute;
    top: 40%;
    width: 40px;
    padding-top: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.t__el01 h3::before,
.t__el02 h3::before {
    left: 0;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}
.t__el01 h3::after,
.t__el02 h3::after {
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.t__el01 h3::before,
.t__el01 h3::after {background-image: url('../img/ele01.svg'); }
.t__el02 h3::before,
.t__el02 h3::after {background-image: url('../img/ele02.svg'); }

.cont__slide {
    padding: 0 40px;
    position: relative;
}
.s__dots .slick-dots {
    position: relative;
    margin-top: 10px;
    bottom: 0;
}
.s__dots .slick-dots li button::before {
    color: rgb(var(--blanco), 1);
    font-size: 12px;
}
.s__arrows .slick-arrow {
    -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;
}
.s__arrows .slick-prev, 
.s__arrows .slick-next {
    width: 30px;
    padding-top: 30px;
}
.s__arrows .slick-prev { left: -40px; }
.s__arrows .slick-next { right: -40px; }
.s__arrows .slick-disabled {
    opacity: 0;
    pointer-events: none;
}
.s__arrows .slick-prev::before, 
.s__arrows .slick-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-size: 35%;
    background-repeat: no-repeat;
    background-position: center;
}
.a__01 .slick-prev::before, 
.a__01 .slick-next::before { background-color: rgb(var(--color04), 1); }
.a__02 .slick-prev::before, 
.a__02 .slick-next::before { background-color: rgb(var(--color02), 1); }
.a__01 .slick-prev::before { background-image: url('../img/prev.svg'); }
.a__01 .slick-next::before { background-image: url('../img/next.svg'); }
.a__02 .slick-prev::before { background-image: url('../img/prev01.svg'); }
.a__02 .slick-next::before { background-image: url('../img/next01.svg'); }
.item__prem {
    width: 90%;
    margin: 0 auto;
}
.item__prem img { width: 100%; }
.premio {
    width: 100%;
    background: url('../img/bg_prod.svg') center no-repeat;
    background-size: contain;
    position: relative;
    z-index: 1;
}
div + .nota { margin-top: 40px; }
.nota {
    text-align: center;
    font-size: 14px;
}

.bg__ele {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: -1;
}
.bg01 { background-image: url('../img/bg01a.svg'); }
.bg02 { background-image: url('../img/bg02a.svg'); }

/******************************
*   Header
******************************/
.header {
    font-family: 'Saker';
    font-weight: normal;
    line-height: 1;
    height: 60px;
}
.header .cont__head {
    position: fixed;
    width: 100%;
    background: rgb(var(--color01), 1);
    z-index: 1000;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);
}
.logo {
    top: 40%;
    left: 20px;
    width: 150px;
    overflow: hidden;
    position: absolute;
    z-index: 10;
}
.logo a { display: block; }
.logo a span { display: none; }
.menu nav ul li a {
    display: block;
    font-size: 30px;
    padding: 23px 20px 19px;
    text-transform: uppercase;
    line-height: 1;
    -webkit-transition: initial;
    -moz-transition: initial;
    -ms-transition: initial;
    -o-transition: initial;
    transition: initial;
    position: relative;
}
.btn__menu {
    width: 60px ;
    height: 60px;
    position: relative;
    margin: 0 0 0 auto;
    cursor: pointer;
}
.btn__menu div {
    width: 60%;
    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%);
}
.btn__menu div span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: currentcolor;
    -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__menu div span + span { margin-top: 6px; }
.btn__menu.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__menu.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__menu.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);
}

.sect__h { padding: 90px 0; }

/******************************
*	Inicio
******************************/
.inicio{ position: relative; }
.graf__hero {
    overflow: hidden;
    height: 100%;
}
.p__ab { position: absolute; }
.graf__hero,
.graf__hero img { width: 100%; }
.graf__hero picture { display: block; }
.graf__hero.p__ab {
    top: 0;
    left: 0;
}
/******************************
*   Dinamica
******************************/
.item__din {
    margin: 0 auto;
    width: 85%;
    height: 100%;
    font-family: 'Saker';
    font-weight: normal;
    position: relative;
}
.num__pas {
    position: absolute;
    width: 18%;
    bottom: calc(100% - 25px);
    left: -5%;
    z-index: 1;
}
.num__pas > div {
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    background: rgb(var(--color04), 1);
    color: rgb(var(--blanco), 1);
    font-size: 32px;
}
.num__pas > div span {
    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%);
}
.graf__pas {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -25%;
    position: relative;
}
.graf__pas::before {
    position: absolute;
    content: '';
    width: 100%;
    padding-top: 100%;
    background: url('../img/loader.svg') center repeat-y;
    background-size: contain;
    z-index: -1;
    top: 65%;
    -webkit-transform: translate(-5%, -50%) rotate(56deg);
    -moz-transform: translate(-5%, -50%) rotate(56deg);
    -ms-transform: translate(-5%, -50%) rotate(56deg);
    -o-transform: translate(-5%, -50%) rotate(56deg);
    transform: translate(-5%, -50%) rotate(56deg);
}
.graf__pas img {
    width: 90%;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, .3));
}
.info__paso {
    padding: 25px 15px 20px;
    background: url('../img/bg_paso.svg') top center repeat-y;
    background-size: 100%;
    position: relative;
    line-height: 1.2;
    color: rgb(var(--blanco), 1);
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
}
.txt__paso span {
    display: block;
    color: rgb(var(--color02), 1);
    font-size: 26px;
}
.txt__paso span sup { font-size: 58%; }

.txt__paso .bnt__aps {
    margin: 15px auto 0;
    width: 80%;
}
.txt__paso .bnt__aps > div + div { margin-left: 6%; }
.conult {
    margin-top: 15px;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-size: 14px;
}

/******************************
*   Premios
******************************/
.s__premios .slick-arrow { top: 60%; }
.item__prem > div + div { margin-top: 25px; }
.premio figure {
    width: 80%;
    margin: 0 auto;
}
.info__pre {
    text-align: center;
    font-weight: bold;
    color: rgb(var(--color05), 1);
}
.premios .nota { color: rgb(var(--color05), 1); }

/******************************
*   Productos
******************************/
.prod {
    width: 80%;
    margin: 0 auto 20px;
}
.prod figure {
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, .3));
}
.prod figure img { width: 100%; }
.info__prod {
    text-align: center;
    font-weight: bold;
    opacity: 0;
    -webkit-transform: translateY(-80%);
    -moz-transform: translateY(-80%);
    -ms-transform: translateY(-80%);
    -o-transform: translateY(-80%);
    transform: translateY(-80%);
    -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;
}
.info__prod span { display: block; }
.info__prod span:nth-child(1) {
    font-family: 'Saker';
    font-weight: normal;
    text-transform: uppercase;
    font-size: 26px;
}
.slide-prod .info__prod {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.madera {
    width: 100%;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    pointer-events: none;
    filter: drop-shadow(0 -10px 10px rgba(0, 0, 0, .2));
    overflow: hidden;
}
.madera img {
    width: 100%;
    object-fit: cover;
    object-position: top center;
    height: 100%;
}

/******************************
*   Ranking
******************************/
#ranking {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.logo__ran { margin-bottom: 20px; }
.logo__ran figure { height: 40px; }
.logo__ran figure img {
    object-fit: cover;
    object-position: center center;
    height: 100%;
}
.cont__tab {
    margin: 0 auto;
    max-width: 600px;
    width: 95%;
}
.cont__tab table { width: 100%; }
.cont__tab table td {
    padding: 8px 6px;
    position: relative;
}
.cont__tab table thead tr td {
    text-align: center;
    font-size: 26px;
    font-family: 'Saker';
    font-weight: normal;
}
.cont__tab table tbody tr td {
    text-align: center;
    border-top: 1px solid rgb(var(--blanco), .5);
    font-weight: bold;
}
.number {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgb(var(--color04), 1);
    display: flex;
    justify-content: center;
    align-items: center;
}
.number span {
    font-size: 20px;
    font-family: 'Saker';
    font-weight: normal;
    color: rgb(var(--blanco), 1);
}
div + .pag { margin-top: 20px; }
.pag ul { text-align: center; }
.pag ul li { display: inline-block; }
.pag ul li a {
    display: block;
    opacity: .5;
    padding: 0 8px;
    font-weight: bold;
}
.pag ul li a:hover,
.pag ul li a.active { opacity: 1; }
.el__ran {
    position: absolute;
    bottom: -2%;
    width: 300px;
    z-index: -1;
}
.el__ran img { width: 100%; }
.ele01 { left: -10%; }
.ele02 { right: -10%; }
.nacho {
    width: 65%;
    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%);
    opacity: .2;
    z-index: -1;
}

/******************************
*   Faqs
******************************/
.faqs {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.cont__faqs {
    margin: 0 auto;
    max-width: 800px;
}
.cont__faqs h3 {
    font-family: 'Open Sans', sans-serif;
    padding: 20px 15px 20px 35px;
    position: relative;
    font-size: 100%;
}
.cont__faqs div + h3 { border-top: 1px solid ; }
.cont__faqs .ui-icon {
    width: 15px;
    padding-top: 15px;
    height: auto;
    position: absolute;
    left: 10px;
    top: 20px;
    text-indent: 0;
    background-image: none;
}
.cont__faqs .ui-icon::before,
.cont__faqs .ui-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    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);
}
.cont__faqs .ui-icon::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);
}
.cont__faqs .ui-state-active .ui-icon::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);
}
.cont__faqs .ui-accordion-content { padding: 0 15px 20px; }

.end__din {
    position: relative;
    z-index: 2;
    padding-bottom: 5%;
}
.end__01 {
    padding-top: 8%;
    margin-top: -18%;
}
.empa {
    margin: 0 auto;
    width: 85%;
}
.empa img {
    width: 100%;
    transform: translateX(3%);
}
.curv__top {
    position: absolute;
    width: 100%;
    left: 0;
    top: -1px;
    z-index: -1;
}

/******************************
*   Contacto
******************************/
.info__center {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 60px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.mb__100 { margin-bottom: 100px; }
.info {  width: 100%; }

.fil__camp + .fil__camp { margin-top: 20px; }
.c__camp label {
    font-family: 'Saker';
    font-weight: normal;
    color: #FAE34B;
    font-size: 28px;
}
.c__camp textarea { min-height: 10vw; }
.c__check {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}
.c__check input,
.c__check i {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
}
.c__check input { opacity: 0; }
.c__check i { background: rgb(var(--blanco), 1); }
.c__check input:checked + i { background: #FAE34B; }
.btn__send {
    text-align: center;
    margin-top: 30px;
}
.btn__send button {
    display: inline-block;
    padding: 15px 60px 12px;
    background: rgb(var(--color02), 1);
    color: rgb(var(--blanco), 1);
    border-radius: 1000px;
    font-family: 'Saker';
    font-weight: normal;
    font-size: 26px;
    text-transform: uppercase;
    -webkit-box-shadow: 0px 8px 0px 0px #ff9d00;
    box-shadow: 0px 8px 0px 0px #ff9d00;
}
.btn__send button span { display: block; }

/******************************
*   Legal
******************************/
.info__legal section {
    padding: 80px 0;
    min-height: 100vh;
}
.info__legal h4 {
    text-align: center;
    color: #FFF609;
    margin-bottom: 40px;
    font-size: 20px;
}
.info__legal h5 {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}
.info__legal h5 + p,
.info__legal h5 + ul,
.info__legal h5 + ol,
.info__legal h5 + div { margin-top: 8px; }
.info__legal p + h5,
.info__legal ul + h5,
.info__legal ol + h5,
.info__legal div + h5 { margin-top: 40px; }
.info__legal ul + p,
.info__legal ol + p,
.info__legal p + ul,
.info__legal p + ol,
.info__legal ul + ol,
.info__legal ol + ul,
.info__legal ul + div,
.info__legal ul + div,
.info__legal div + ul,
.info__legal div + ol,
.info__legal div + div,
.info__legal p + div,
.info__legal div + p { margin-top: 20px; }
.info__legal ul li + li,
.info__legal ol li + li { margin-top: 15px; }
.info__legal ul,
.info__legal ol { padding-inline-start: 20px; }
.info__legal ul { list-style: disc; }
.info__legal ol { list-style: decimal; }
.info__legal ul[type='a'],
.info__legal ol[type='a'] { list-style: lower-latin; }
.info__legal ul[type='i'],
.info__legal ol[type='i'] { list-style: lower-roman; }
.info__legal ul li::marker,
.info__legal ol li::marker { color: #FFF609; }
.info__legal .cont__tab table thead tr td { color: #5697ef; }
.info__legal .cont__tab table thead tr td::before { background: #ffffff; }

/******************************
*	Mobile
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
@media (min-width : 600px) {
.ele { background-size: 100% 100%; }
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
.info__pre span { font-size: 4vw; }
.prod figure {
    margin: 0 auto;
    width: 80%;
}
.copa { bottom: 9%; }
.swirl { opacity: .4; }
}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
.cont__slide { padding: 0 60px; }
.s__arrows .slick-prev { left: -60px; }
.s__arrows .slick-next { right: -60px; }
.s__arrows .slick-prev,
.s__arrows .slick-next {
    width: 40px;
    padding-top: 40px;
}
.info__paso { padding: 20px 15px 15px; }
.premios .container { width: 80%; }
.productos .container { width: 85%; }
.prod { max-width: 32vh; }
.prod figure {
    -webkit-transform: rotate(12deg) scale(.6);
    -moz-transform: rotate(12deg) scale(.6);
    -ms-transform: rotate(12deg) scale(.6);
    -o-transform: rotate(12deg) scale(.6);
    transform: rotate(12deg) scale(.6);
    -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);
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, .3));
}
.slide-prod .prod figure {
    -webkit-transform: rotate(0deg) scale(1);
    -moz-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    -o-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
}
.el__ran {
    bottom: -3%;
    width: 30%;
}

.cont__form {
    width: 60%;
    margin: 0 auto;
}
.empa { width: 55%; }
.nacho { width: 35%; }

.bg01 { background-image: url('../img/bg01.svg'); }
.bg02 { background-image: url('../img/bg02.svg'); }

}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
.el__ran {
    bottom: -2%;
    width: 35%;
}
}
/* Large Devices, Wide Screens */
@media (min-width : 768px) and (max-width : 1200px) {
.dinamica .container { width: 95%; }
.empa { max-width: 650px; }
}
@media (max-width : 992px) {
.sect__h { padding: 90px 0 200px; }
}
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (min-width : 1400px) {
.dinamica .container { width: 75%; } 
}
@media (max-width : 1998px) {
}
@media (min-width : 1999px) {
html { scroll-padding: 4vw; }
input,
select,
textarea {
    padding: 12px 16px;
    padding: 0.8vw;
    font-size: 1vw;
}
.container { width: 80%; }
.sect__h { padding: 3vw 0; }
.t__sect { margin-bottom: 5.2vw; }
.t__sect h3 { font-size: 2.5vw; }
.t__sect h3 { padding: 0 3vw; }
.t__sect h3::before,
.t__sect h3::after {
    width: 2vw;
    padding-top: 2vw;
} 
.logo__ran figure { height: 2.5vw; }
.t__sect p { font-size: .9vw; }
.cont__slide { padding: 0 3vw; }
.s__arrows .slick-prev,
.s__arrows .slick-next {
    width: 2vw;
    padding-top: 2vw;
}
.s__arrows .slick-prev { left: -2.5vw; }
.s__arrows .slick-next { right: -2.5vw; }
.info__paso{
    font-size: 1.2vw;
    padding: .8vw 1.3vw;
}
.num__pas > div { font-size: 1.8vw; }
.info__pre { font-size: 1.2vw; }
.info__prod span:nth-child(1) { font-size: 1.4vw; }
.info__prod span:nth-child(2) { font-size: 1.2vw; }

.cont__tab { max-width: 40%; }
.cont__tab table thead tr td { font-size: 1.5vw; }
.cont__tab table tbody tr td {
    font-size: 1.2vw;
    padding: 0.5vw;
}
.cont__tab table tr td:nth-child(1) { width: 2vw; }
.number {
    width: 2.2vw;
    height: 2.2vw;
}
.number span { font-size: .8vw; }
.pag ul li a {
    font-size: 1vw;
    padding: 0.3vw;
}
.cont__faqs { max-width: 46%; }
.cont__faqs h3 {
    padding: 0.8vw 0.8vw 0.8vw 1.8vw;
    font-size: .9vw;
}
.cont__faqs .ui-icon {
    width: 0.8vw;
    padding-top: 0.8vw;
    top: 0.8vw;
}
.cont__faqs .ui-accordion-content {
    padding: 0 0.8vw 0.8vw;
    font-size: .9vw;
}
div + .nota { margin-top: 3vw; }
.nota { font-size: .9vw; }

.empa { width: 45%; }
.c__sect::before { background-size: 5%; }

.cont__form {
    width: 40%;
    margin: 0 auto;
}
.fil__camp + .fil__camp { margin-top: 1.4vw; }
.c__camp label { font-size: 1.5vw; }
.c__check { font-size: .9vw; }
.c__check { padding-left: 2vw; }
.c__check input, .c__check i {
    width: 1.4vw;
    height: 1.4vw;
}
.btn__send button {
    padding: 1vw 2.6vw .8vw;
    font-size: 1.2vw;
}
}

/******************************
*   Header
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 1023px) {
.menu {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgb(var(--color01), .95);
}
.menu > div nav { padding-top: 40px; }
.menu nav ul li { position: relative; }
.menu nav ul li + li {
    border-top: 1px solid rgb(var(--blanco), .6);
}
.menu nav ul li a { position: relative; }
.menu nav ul li a::before,
.menu nav ul li a::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
}
.menu nav ul li a::after {
    right: 10px;
    background-image: url('../img/next.svg');
    background-size: 50%;
}
}
/* Medium Devices to Large Devices */
@media (min-width : 1024px){
.btn__menu { display: none; }
.header { height: 72px; }
.logo {
    width: 190px;
    top: 40%;
    left: 30px;
}
.menu nav ul { text-align: right; }
.menu nav ul li { display: inline-block; }
.menu nav ul li a { padding: 23px 15px 19px; }

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

}
@media (min-width : 1999px) {
.header { height: 3.8vw; }
.logo { width: 15vw; }
.menu nav ul li a {
    font-size: 1.5vw;
    padding: 1.3vw 1.5vw 1vw;
}
}






/******************************* Templete ******************************/
/******************************
*   Cintillo
******************************/
.cint + .cint { margin-top: 10px; }
.cint {
    width: 100%;
    background: rgb(var(--blanco), 1);
    color: rgb(var(--negro), .8);
    padding: 20px;
}
.c01 {
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}
.cont__log {
    width: 100%;
    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;
    align-items: center;
    justify-content: center;
}
.cont__log > div figure { height: 50px; }
.cont__log > div figure img {
    object-fit: cover;
    object-position: center center;
    height: 100%;
}
.cc_02 { text-align: center; }
.cc_02 a {
    display: inline-block;
    border-radius: 1000px;
    font-weight: bold;
    padding: 16px 25px;
    color: rgb(var(--blanco), 1);
    line-height: 1;
    -webkit-transition: initial;
    -moz-transition: initial;
    -ms-transition: initial;
    -o-transition: initial;
    transition: initial;º
}
.cc_02 a span {
    display: block;
}
.cc_02 a + a { margin-left: 20px; }
.cc_02 .cat01 {
    background: rgb(var(--color02), 1);
    color: rgb(var(--blanco), 1);
    -webkit-box-shadow: 0px 1vw 0px 0px #FF9D00;
    box-shadow: 0px 1vw 0px 0px #FF9D00;
}
.cc_02 .cat02 {
    background: rgb(var(--color01), 1);
    color: rgb(var(--blanco), 1);
    -webkit-box-shadow: 0px 1vw 0px 0px #5D8918;
    box-shadow: 0px 1vw 0px 0px #5D8918;
}

/*------------------- Mobile -------------------*/ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
.cint { text-align: center; }
.cont__log > div { margin: 10px; }
.cont__log {
    width: 100%;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
}
.cont__log > div figure { height: 35px; }
.col__cin + .col__cin,
.c02__col + .c02__col { margin-top: 30px; }
}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
.cint { padding: 1vw 0; }
.c02 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}
.cc_01 { font-size: 1.8vw; }
.c02__col {
    width: 50%;
    padding: 0 1vw;
}
.cc_02 a {
    font-size: 1.5vw;
    padding: 1.5vw 1.8vw;
}
.cc_02 a + a { margin-left: 3.3vw; }
.cc_02 .cat01 {
    -webkit-box-shadow: 0px .3vw 0px 0px #FF9D00;
    box-shadow: 0px .3vw 0px 0px #FF9D00;
}
.cc_02 .cat02 {
    -webkit-box-shadow: 0px .3vw 0px 0px #5D8918;
    box-shadow: 0px .3vw 0px 0px #5D8918;
}
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 768px) and (max-width : 1200px) {
.cint { padding: 2vw 0; }
.c01 {
    margin: 0 auto;
    width: 60%;
}
.c02 { margin-top: 3vw; }
.cont__log > div + div { margin: .8vw 2vw; }
.cont__log > div figure { height: 30px; }
}
@media (min-width : 992px) and (max-width : 1200px) { 
}
@media (min-width : 1200px) {
.cint {
    padding: 1vw 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.c01 {
    width: 40%;
    padding-right: .5vw;
}
.cont__log { padding: 0 1vw; }
.cont__log > div + div { margin: .8vw 0.6vw; }
.c02 {
    width: 60%;
    border-left: 1px solid;
    padding-left: 0.5vw;
}
.cc_01 { font-size: 1vw; }
.cc_02 a {
    font-size: 1vw;
    padding: 1vw 1.3vw;
}
.cont__log > div figure { height: 1.9vw; }
.cinti .cint:nth-child(1) .cont__log > div figure { height: 2.8vw; }
}


/******************************
*   Joy
******************************/
.download {
    position: absolute;
    width: 70%;
    bottom: 10%;
    left: 50%;
}
.download div { padding: 0 1.6vw }
.txt__down { width: 100%; }
.bnt__aps {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

/* Cintillo */
.joy {
    background: var(--j_bg);
    color: rgb(var(--blanco), 1);
    padding: 40px 15px;
    font-family: 'Houschka Pro';
    font-weight: 500;
    font-style: normal;
    text-align: center;
}
.joy a {
    -webkit-transition: initial;
    -moz-transition: initial;
    -ms-transition: initial;
    -o-transition: initial;
    transition: initial;
}
.fil__joy { position: relative; }
.fil__01 strong {
    display: block;
    color: var(--j_ama);
    font-size: 22px;
}
.fil__02 .cta__joy {
    display: inline-block;
    border-radius: 6px;
    background: var(--j_azu);
    font-weight: bold;
    padding: 18px 30px;
    color: var(--j_bg);
    font-size: 20px;
    line-height: 1;
}
.fil__02 strong {
    display: block;
    font-size: 22px;
}
.btn__store {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

/*------------------- Mobile -------------------*/ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
.download {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.download > div + div { margin-top: 5%; }
.joy__down {
    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;
}
.icon__app { width: 25%; }
.txt__down { width: 75%; }

.fil__joy + .fil__joy { margin-top: 40px; }
.logo__joy {
    max-width: 170px;
    width: 40%;
    margin: 20px auto;
}
.fil__01 p br { display: none; }
.fil__02 strong { margin: 30px 0; }
.btn__store a + a { margin-left: 30px; }
.btn__store a {
    width: 42%;
    max-width: 150px;
}
}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
.download {
    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;
    width: 25%;
    bottom: 5%;
    left: 2%;
}
.download div { padding: 0 .5vw }
.txt__down {
    position: absolute;
    width: 100%;
    bottom: calc(100% + 1vw);
}
.txt__down figure { width: 65%; }
.joy__down { width: 25%; }
.bnt__aps { width: 75%; }

.joy > div,
.fil__02 {
    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-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.joy {
    padding-top: 1.5vw;
    padding-bottom: 1.5vw;
}    
.logo__joy {
    width: 23%;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.fil__01 > div { text-align: left; }
.fil__01 strong {
    font-size: 2.5vw;
    margin-bottom: 1.6vw;
}
.fil__01 p { font-size: 1.9vw; }
.fil__02 .cta__joy {
    font-size: 2vw;
    padding: 2vw 2.3vw;
    border-radius: 1vw;
    margin-right: 5.5vw;
}
.fil__02 strong { font-size: 2.5vw; }
.btn__store { margin-left: 5.3vw; }
.btn__store a { width: 15vw; }
.btn__store a + a { margin-left: 3vw; }
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 768px) and (max-width : 1200px) {
.fil__joy + .fil__joy { margin-top: 4vw; }
.fil__01 {width: 100%; }

.fil__01 > div {
    padding-left: 18%;
    display: inline-block;
    text-align: left;
    position: relative;
}
.logo__joy { width: 20%; }
}
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (min-width : 1200px) {
.fil__joy + .fil__joy { margin-left: 5.5vw; }
.fil__01 { padding-left: 11%; }
.fil__01 strong {
    font-size: 1.5vw;
    margin-bottom: .6vw;
}
.fil__01 p { font-size: 1vw; }
.fil__02 .cta__joy {
    font-size: 1.2vw;
    padding: 1vw 1.3vw;
    border-radius: 0.4vw;
    margin-right: 5.5vw;
}
.fil__02 strong { font-size: 1.5vw; }
.btn__store { margin-left: 3.3vw; }
.btn__store a { width: 10vw; }
.btn__store a + a { margin-left: 3vw; }
}


/******************************
*	Footer
******************************/
.footer {
    background: var(--f_bg);
    color: rgb(var(--blanco), 1);
    font-family: 'Myriad Pro Light Cond';
    font-weight: normal;
    padding: 30px;
    line-height: 1.3;
}
.logo__foo figure { width: 180px; }

/*------------------- Mobile -------------------*/ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
.footer > div + div { margin-top: 30px; }
.footer br { display: none; }
}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
.footer {
    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-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
.logo__foo {
    width: 100%;
    margin-bottom: 30px;
}
.logo__foo figure { margin: 0 auto; }
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) { 
}

@media (min-width : 1999px) {
.footer {
    padding: 1.8vw 30px;
    font-size: 1vw;
}
.logo__foo figure { width: 9.58vw; } 
}
