@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
    color-scheme: light;
}

.no-pad {
    padding: 0 !important;
}

.no-mar {
    margin: 0 !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}

body {
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #0e222e;
    display: flex;
    flex-direction: column;
    margin: 0;
    background-color: #feda02;
}


/* CUSTOM BOTONES PREV NEXT */

#prevButton,
#nextButton {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #3b413c;
    opacity: 0.5;
    border: none;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#prevButton .iconUp,
#nextButton .iconUp {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    /* Adjust size */
    border-right: 6px solid transparent;
    /* Adjust size */
    border-bottom: 8px solid #ffffff;
    /* Adjust size and color */
}

#prevButton .iconDown,
#nextButton .iconDown {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    /* Adjust size */
    border-right: 6px solid transparent;
    /* Adjust size */
    border-top: 8px solid #ffffff;
    /* Adjust size and color */
}

#prevButton:hover,
#nextButton:hover {
    opacity: 1;
}

#prevButton {
    position: fixed;
    top: 47%;
    right: 15px;
    z-index: 100;
}

#nextButton {
    position: fixed;
    top: 52%;
    right: 15px;
    z-index: 100;
}


/* ********************************************************************
****************** HEADER FIXED ***************************************
******************************************************************** */


/* Fixed header and footer.
	* --------------------------------------- */

#header,
#footer {
    position: fixed;
    height: 120px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    background: #feda02;
    z-index: 9;
    text-align: center;
    color: #0e222e;
    padding: 0 16px;
}

#header {
    top: 0px;
    transition: all 0.6s ease-out;
}

@media (max-width: 768px) {
    #header {
        height: 90px;
        justify-content: space-between;
        padding: 0 8px;
    }
    #header .logo {
        height: 100%;
    }
}

#footer {
    bottom: 0px;
}


/* Menu Button */

.menu-button {
    width: 2.5em;
    height: 2.25em;
    font-size: 1.5em;
    -webkit-transform: translate3d(1.5em, 1.5em, 0);
    transform: translate3d(0, 0, 0);
}

.menu-button {
    z-index: 1000;
    margin: 0;
    padding: 0;
    border: none;
    text-indent: 2.5em;
    color: transparent;
    background: #feda02;
}

.menu-button::before {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    bottom: 0.5em;
    left: 0.5em;
    background: linear-gradient(#0e222e 20%, transparent 20%, transparent 40%, #0e222e 40%, #0e222e 60%, transparent 60%, transparent 80%, #0e222e 80%);
    content: "";
}

.menu-button:hover {
    opacity: 1;
    cursor: pointer;
}


/* ********************************************************************
****************** SECTIONS     ***************************************
******************************************************************** */


/* Centered texts in each section
	* --------------------------------------- */

.swiper {
    height: 100dvh !important;
    max-height: 100dvh !important;
}

.section {
    overflow: hidden;
}

.section .container {
    width: 60%;
    margin: 0 auto;
    --display: flex;
    --position: static;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding-top: 120px;
    /* Estilos del botón whatsapp*/
}

.section .container .promo {
    padding-top: 42px;
    background-color: transparent;
    perspective: 1000px;
}

.section .container .promo .timer {
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
    z-index: 100;
}

.section .container .promo .timer small {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.section .container .promo .timer .clock {
    display: flex;
}

.section .container .promo .timer .clock .box {
    background-color: #0e222e;
    color: #ffffff;
    margin: 0 0 0 2px;
    border-radius: 8px;
    width: 55px;
    height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section .container .promo .timer .clock .box h2 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
    margin: 0;
}

.section .container .promo .timer .clock .box small {
    font-size: 8px;
    font-weight: 600;
    line-height: 8px;
    color: #feda02;
}

.section .container .promo .card {
    transition: all 0.5s ease-in-out;
    transform-style: preserve-3d;
    background-color: transparent;
    border: none;
}

.section .container .promo .card .banner {
    position: relative;
    height: 100dvh;
    padding-bottom: 200px;
}

.section .container .promo .card .banner a {
    display: block;
    height: 100%;
}

.section .container .promo .card .banner a img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section .container .promo .card .banner a img.desktop {
    display: block;
}

.section .container .promo .card .banner a img.mobile {
    display: none;
}

@media (max-width: 768px) {
    .section .container .promo .card .banner a img.desktop {
        display: none;
    }
    .section .container .promo .card .banner a img.mobile {
        display: block;
    }
}

@media (max-width: 768px) {
    .section .container .promo .card .banner {
        padding-bottom: 150px;
    }
}

.section .container .promo .card .front,
.section .container .promo .card .back {
    position: absolute;
    backface-visibility: hidden;
}

.section .container .promo .card .front {
    filter: drop-shadow(0px 5px 6px rgba(14, 34, 46, 0.2));
    background-color: #ffffff;
    position: relative;
    border-radius: 16px;
}

.section .container .promo .card .front .tipo_descuento {
    position: absolute;
    left: 0;
    top: -42px;
    width: 120px;
    height: 120px;
    z-index: 100;
    background-size: cover !important;
}

.section .container .promo .card .front .tipo_descuento.off {
    background: url(../images/sticker50off.png) center no-repeat;
}

.section .container .promo .card .front .tipo_descuento.dosporuno {
    background: url(../images/sticker2x1.png) center no-repeat;
}

.section .container .promo .card .front .tipo_descuento.agotado {
    z-index: 999;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/stickeragotado.png) center no-repeat rgba(59, 65, 60, 0.5);
    border-radius: 16px;
    background-size: unset !important;
}

@media (max-width: 768px) {
    .section .container .promo .card .front .tipo_descuento {
        width: 100px;
        height: 100px;
    }
}

.section .container .promo .card .front .imagen {
    position: relative;
    border-radius: 16px;
}

.section .container .promo .card .front .imagen .stock {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #feda02;
    padding: 2px 16px;
    position: absolute;
    bottom: 0;
    z-index: 100;
    background-color: rgba(14, 34, 46, 0.4);
    width: 100%;
}

.section .container .promo .card .front .imagen .flickity-viewport {
    border-radius: 16px 16px 0 0;
}

.section .container .promo .card .front .imagen .flickity-page-dots .dot {
    width: 12px;
    height: 12px;
    margin: 0 4px;
}

.section .container .promo .card .front .imagen .flickity-page-dots .dot.is-selected {
    background-color: #feda02 !important;
}

.section .container .promo .card .front .textos {
    padding: 34px 16px 16px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section .container .promo .card .front .textos h1 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin: 0;
    padding-right: 16px;
    transition: all 0.6s ease-out;
}

@media (max-width: 768px) {
    .section .container .promo .card .front .textos h1 {
        font-size: 18px;
        line-height: 22px;
    }
}

.section .container .promo .card .front .textos a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.4px;
    text-decoration: underline;
    text-transform: uppercase;
    color: #0e222e;
}

.section .container .promo .card .front .textos a.detalle {
    display: flex;
    font-size: 11px;
    text-align: center;
    text-decoration: none;
    color: #0e222e;
    margin-top: 0px;
    padding: 3px;
    border: 2px solid #0e222e;
    border-radius: 4px;
}

.section .container .promo .card .front .textos a.detalle:hover {
    color: #ffffff;
    background-color: #0e222e;
}

.section .container .promo .card .front .textos a:hover {
    text-decoration: none;
}

.section .container .promo .card .front .precio {
    border-top: 1px solid #3b413c;
    display: flex;
    justify-content: space-between;
}

.section .container .promo .card .front .precio .antes,
.section .container .promo .card .front .precio .ahora {
    width: 50%;
    margin: 8px;
    text-align: center;
    color: #3b413c;
}

@media (max-width: 768px) {
    .section .container .promo .card .front .precio .antes,
    .section .container .promo .card .front .precio .ahora {
        margin: 8px;
    }
    .section .container .promo .card .front .precio .antes h1,
    .section .container .promo .card .front .precio .ahora h1 {
        font-size: 26px !important;
    }
}

.section .container .promo .card .front .precio .antes small {
    display: flex;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    opacity: 60%;
    text-transform: uppercase;
}

.section .container .promo .card .front .precio .antes h1 {
    font-size: 32px;
    font-weight: 600;
    text-decoration: line-through;
    letter-spacing: -0.4px;
    margin: 0;
    opacity: 60%;
}

.section .container .promo .card .front .precio .antes h1 span {
    font-weight: 300;
    text-decoration: none !important;
}

.section .container .promo .card .front .precio .separador {
    width: 1px;
    background-color: #3b413c;
}

.section .container .promo .card .front .precio .ahora small {
    display: flex;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.section .container .promo .card .front .precio .ahora small img {
    margin: 0 4px;
}

.section .container .promo .card .front .precio .ahora h1 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin: 0;
}

.section .container .promo .card .front .precio .ahora h1 span {
    font-weight: 500;
}

.section .container .promo .card .back {
    filter: drop-shadow(0px 5px 6px rgba(14, 34, 46, 0.2));
    background-color: #ffffff;
    position: relative;
    border-radius: 16px;
    transform: rotateY(180deg);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px;
}

.section .container .promo .card .back .close {
    display: inline-block;
}

.section .container .promo .card .back .close img {
    background-color: #ffffff;
    border-radius: 100%;
    width: 30px;
    height: 30px;
}

.section .container .promo .card .back .close:hover {
    filter: drop-shadow(0px 4px 4px rgba(14, 34, 46, 0.4));
}

.section .container .promo .card .back .empresa {
    padding: 0 16px 8px 16px;
    border-bottom: 1px solid rgba(59, 65, 60, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section .container .promo .card .back .empresa h1 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.section .container .promo .card .back .empresa a {
    font-size: 16px;
    font-weight: 500;
    color: #01cfe7;
    text-decoration: none;
}

.section .container .promo .card .back .empresa a:hover {
    text-decoration: underline;
}

.section .container .promo .card .back .empresa .compartir {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section .container .promo .card .back .empresa .compartir img {
    width: 40px;
}

.section .container .promo .card .back .empresa .compartir:hover img {
    border-radius: 9px;
    background-color: rgba(254, 218, 2, 0.5);
}

.section .container .promo .card .back .descripcion {
    padding: 16px;
    border-bottom: 1px solid rgba(59, 65, 60, 0.3);
}

.section .container .promo .card .back .descripcion .inner {
    margin: 0 auto;
    max-width: 860px;
    height: 26vh;
    overflow-y: auto;
    max-height: 100%;
    padding-right: 10px;
}

.section .container .promo .card .back .descripcion h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    color: #3b413c;
    letter-spacing: -0.4px;
}

.section .container .promo .card .back .descripcion h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    margin: 8px 0 2px 0;
    color: #0e222e;
    letter-spacing: -0.4px;
}

.section .container .promo .card .back .descripcion p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #3b413c;
    margin: 0;
}

.section .container .promo .card .back .legal {
    text-align: center;
    font-size: 10px;
    line-height: 14px;
    font-weight: 600;
    color: #3b413c;
    letter-spacing: -0.4px;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .section .container .promo .card .back .empresa {
        text-align: left;
        padding: 8px;
    }
    .section .container .promo .card .back .empresa h1 {
        font-size: 30px;
        line-height: 30px;
    }
    .section .container .promo .card .back .descripcion {
        padding: 8px;
        text-align: left;
    }
    .section .container .promo .card .back .descripcion .inner {
        height: 32vh;
    }
    .section .container .promo .card .back .descripcion .inner h3 {
        font-size: 18px;
        font-weight: 500;
        line-height: 22px;
        margin: 0;
        color: #3b413c;
        letter-spacing: -0.4px;
    }
    .section .container .promo .card .back .descripcion .inner h4 {
        font-size: 18px;
        font-weight: 600;
        line-height: 22px;
        margin: 8px 0 2px 0;
        color: #0e222e;
        letter-spacing: -0.4px;
    }
    .section .container .promo .card .back .descripcion .inner p {
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        color: #3b413c;
        margin: 0;
    }
    .section .container .promo .card .back .legal {
        text-align: left;
        margin-top: 8px;
    }
}

.section .container .promo .card.flipped {
    transform: rotateY(180deg);
}

.section .container .promo .card.flipped .tipo_descuento {
    display: none;
}

.section .container .carousel {
    width: 100%;
}

.section .container .carousel .carousel-cell {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-right: 0px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-attachment: fixed !important;
}

.section .container .carousel .carousel-cell {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section .container .carousel .carousel-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section .container .cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    height: 60px;
    background-color: #0e222e;
    border-radius: 16px;
    max-width: 408px;
    width: 100%;
    margin: 24px auto;
    transition: all 0.6s ease-out;
}

.section .container .cta span {
    font-weight: 700;
}

.section .container .cta:hover {
    color: #feda02;
    text-decoration: none;
    filter: drop-shadow(0px 5px 6px rgba(14, 34, 46, 0.4));
}

.section .container .cta.disabled {
    background-color: #d8d7d6;
    color: #a9a9a9;
    font-size: 24px;
    text-transform: none;
}

.section .container .cta.disabled:hover {
    color: #3b413c;
}

.section .container .cta.canjeado {
    background-color: #efcc00;
    color: #0e222e;
    font-size: 20px;
    text-transform: none;
}

.section .container .calltoaction {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section .container .calltoaction .helper {
    font-size: 12px;
    margin: 6px 0;
    display: none;
}

.section .container .calltoaction .whatsapp-btn {
    gap: 10px;
    /* espacio entre ícono y texto */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.2px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    height: 54px;
    background-color: #25d366;
    border-radius: 16px;
    max-width: 408px;
    width: 100%;
    transition: all 0.6s ease-out;
    filter: drop-shadow(0px 5px 6px rgba(14, 34, 46, 0.2));
}

.section .container .calltoaction .whatsapp-btn:hover {
    background-color: #20ba5a;
    filter: drop-shadow(0px 5px 6px rgba(14, 34, 46, 0.4));
}

.section .container .calltoaction .whatsapp-btn .icon-whatsapp {
    width: 44px;
    height: 44px;
}

@media (max-width: 768px) {
    .section .container {
        transition: all 0.6s ease-out;
        width: 100%;
        padding: 90px 16px 0 16px;
    }
    .section .container .cta {
        width: 100%;
        max-width: 330px;
    }
    .section .container .calltoaction .whatsapp-btn {
        width: 100%;
        max-width: 330px;
        font-size: 18px;
    }
}

.modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal.show {
    display: flex;
    overflow: hidden;
}

.modal.show .modal-content {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease;
}

.modal .modal-body {
    padding: 0 !important;
}

.modal .modal-body .success-message .header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal .modal-body .success-message .header h2 {
    font-size: 28px;
    line-height: normal;
    font-weight: 800;
    color: #0e222e;
    margin: 0;
}

.modal .modal-body .success-message .close-modal img {
    margin: 0;
}

.modal .modal-body .success-message .close-modal.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    height: 60px;
    background-color: #0e222e;
    border-radius: 16px;
    max-width: 408px;
    width: 100%;
    margin: 16px auto;
}

.modal .modal-body .success-message p {
    font-size: 12px;
    line-height: normal;
}

.modal .modal-body .success-message img {
    margin: 16px auto;
    width: 300px;
}

.modal .modal-content {
    background: #fff;
    padding: 24px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 60%;
    height: 100%;
    margin-top: 240px;
    text-align: left;
    position: relative;
    opacity: 1;
    transform: translateY(640px);
    transition: all 1s ease;
}

.modal .modal-content .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal .modal-content .header h2 {
    font-size: 28px;
    line-height: normal;
    font-weight: 800;
    color: #0e222e;
    margin: 0 auto;
}

.modal .modal-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #3b413c;
    text-align: center;
    max-width: 400px;
    margin: 0 auto 24px auto;
}

.modal .modal-content p.t14 {
    font-size: 14px;
    line-height: 20px;
    max-width: 100%;
    text-align: left;
}

.modal .modal-content .close-modal {
    display: inline-block;
}

.modal .modal-content .close-modal img {
    background-color: #ffffff;
    border-radius: 100%;
    width: 30px;
    height: 30px;
}

.modal .modal-content .close-modal:hover {
    filter: drop-shadow(0px 4px 4px rgba(14, 34, 46, 0.4));
}

.modal .modal-content .close-terms {
    display: flex;
    justify-content: flex-end;
    width: 20px;
    position: absolute;
    right: 10px;
}

.modal .modal-content .close-terms img {
    background-color: #ffffff;
    border-radius: 100%;
    width: 20px;
    height: 20px;
}

.modal .modal-content .close-terms:hover {
    filter: drop-shadow(0px 4px 4px rgba(14, 34, 46, 0.4));
}

.modal .modal-content form {
    margin: 16px auto;
    max-width: 500px;
}

.modal .modal-content form input {
    font-size: 16px;
    color: #0e222e;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.modal .modal-content form input[type=checkbox] {
    padding: unset;
}

.modal .modal-content form .form-check-input:checked {
    background-color: #0e222e;
    border-color: #0e222e;
}

.modal .modal-content form label {
    font-size: 12px;
    font-weight: 400;
    color: #3b413c;
}

.modal .modal-content form label a {
    color: #0e222e;
    text-decoration: underline;
}

.modal .modal-content form .cta-submit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    height: 60px;
    border-radius: 16px;
    max-width: 408px;
    width: auto;
    margin: 24px auto;
    transition: all 0.6s ease-out;
}

.modal .modal-content form .cta-submit span {
    font-weight: 700;
}

.modal .modal-content form .cta-submit span.cta-text {
    font-weight: 400;
    position: relative;
    z-index: 999;
    color: #ffffff;
}

.modal .modal-content form .cta-submit.active {
    background-color: #0e222e;
    cursor: pointer;
}

.modal .modal-content form .cta-submit.loading {
    display: block;
    padding-top: 10px;
    transition: none;
}

.modal .modal-content form .cta-submit .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 60px;
    background-color: #e0479e;
    transition: all 3s ease-out;
    border-radius: 16px;
}

.modal .modal-content form .cta-submit:hover {
    color: #feda02;
    text-decoration: none;
    filter: drop-shadow(0px 5px 6px rgba(14, 34, 46, 0.4));
}

.modal .modal-content form .cta-submit.disabled {
    background-color: #d8d7d6;
    color: #a9a9a9;
    pointer-events: none;
}

@media (max-width: 768px) {
    .modal .modal-content {
        width: 70%;
        margin-top: 180px;
    }
    .modal .modal-content .success-message .header {
        justify-content: start;
    }
    .modal .modal-content .header h2 {
        margin: 0;
    }
    .modal .modal-content p {
        text-align: left;
        max-width: unset;
        margin: 8px 0;
    }
    .modal .modal-content form {
        max-width: 100%;
        margin: 16px 0;
    }
}

@media (max-width: 730px) {
    .modal .modal-content {
        width: 85%;
    }
}

@media (max-width: 630px) {
    .modal .modal-content {
        width: 95%;
    }
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 630px) {
    #fp-nav {
        display: none;
    }
}


/* MENU SIDEBAR */

.menu-wrap {
    position: absolute;
    z-index: 1001;
    width: 100%;
    height: 100%;
    background: #373a47;
    padding: 2.5em 1.5em 0;
    font-size: 1.15em;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.4s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.menu-wrap a {
    color: #b8b7ad;
}

.menu-wrap a:hover,
.menu-wrap a:focus {
    color: #ffffff;
}

.menu-wrap .menu img {
    width: -webkit-fill-available;
    max-width: 300px;
}

.modal-fullscreen .modal-content {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
}

.modal-fullscreen .modal-content .modal-body {
    padding: 24px !important;
}

.content-wrap {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.content {
    position: relative;
    background: #b4bad2;
}

.content::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    content: "";
    opacity: 0;
    transform: translate3d(100%, 0, 0);
    transition: opacity 0.4s, transform 0s 0.4s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.menu-button {
    z-index: 1000;
    margin: 0.5em;
    padding: 0;
    width: 2.5em;
    height: 2.25em;
    border: none;
    text-indent: 2.5em;
    font-size: 1.5em;
    color: transparent;
    background: transparent;
}

.menu-button::before {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    bottom: 0.5em;
    left: 0.5em;
    background: linear-gradient(#373a47 20%, transparent 20%, transparent 40%, #373a47 40%, #373a47 60%, transparent 60%, transparent 80%, #373a47 80%);
    content: "";
}

.menu-button:hover {
    opacity: 0.6;
}

.close-button {
    width: 1em;
    height: 1em;
    position: absolute;
    right: 1em;
    top: 1em;
    overflow: hidden;
    text-indent: 1em;
    font-size: 0.75em;
    border: none;
    background: transparent;
    color: transparent;
}

.close-button::before,
.close-button::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    background: #bdc3c7;
}

.close-button::before {
    transform: rotate(45deg);
}

.close-button::after {
    transform: rotate(-45deg);
}

.menu,
.icon-list {
    height: 100%;
}

.icon-list {
    transform: translate3d(0, 100%, 0);
    transition: transform 0s 0.4s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.icon-list a {
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    display: block;
    padding: 0.8em;
    transform: translate3d(0, 500px, 0);
    transition: transform 0s 0.4s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.icon-list a:nth-child(2) {
    transform: translate3d(0, 1000px, 0);
}

.icon-list a:nth-child(3) {
    transform: translate3d(0, 1500px, 0);
}

.icon-list a:nth-child(4) {
    transform: translate3d(0, 2000px, 0);
}

.icon-list a:nth-child(5) {
    transform: translate3d(0, 2500px, 0);
}

.icon-list a:nth-child(6) {
    transform: translate3d(0, 3000px, 0);
}

.icon-list a span {
    margin-left: 10px;
    font-weight: 700;
}

.show-menu .menu-wrap {
    transform: translate3d(0, 0, 0);
    transition: transform 0.8s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.show-menu .icon-list,
.show-menu .icon-list a {
    transform: translate3d(0, 0, 0);
    transition: transform 0.8s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.show-menu .icon-list a {
    transition-duration: 0.9s;
}

.show-menu .content::before {
    opacity: 1;
    transition: opacity 0.8s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transform: translate3d(0, 0, 0);
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

body.menu-open .content-wrap::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: transparent;
    pointer-events: all;
}

.accordion {
    height: 100%;
    padding-bottom: 200px;
    overflow-y: auto;
}

.accordion-item {
    background-color: transparent;
    border: none !important;
    outline: none !important;
}

.accordion-item .accordion-button {
    background-color: transparent;
    text-decoration: none;
    padding: 10px;
}

.accordion-item .accordion-button:not(.collapsed) {
    color: #feda02 !important;
    box-shadow: none !important;
}

.accordion-item small {
    font-size: 11px;
    color: rgba(254, 218, 2, 0.5);
    padding: 0 10px 10px;
}

.accordion-body {
    border-top: 1px solid #3b413c;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 20px;
}

.accordion-body h3 {
    font-size: 24px;
}

.accordion-body h4 {
    font-size: 20px;
}

.accordion-body p {
    font-weight: 200;
}

.accordion-collapse {
    transition: all 0.3s ease-out;
}

.accordion-collapse:not(.show) {
    opacity: 0;
}

.accordion-collapse.show {
    opacity: 1;
}


/*# sourceMappingURL=estilos.css.map */