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

*::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48;
    font-size: 3rem;
}


.fondo-polka {
    background-color: #ffffff;
    background-image: radial-gradient(#58c3bd 0.6000000000000001px, transparent 0.6000000000000001px), radial-gradient(#58c3bd 0.6000000000000001px, #ffffff 0.6000000000000001px);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
}

.fondo-blanco {
    background-color: #ffffff;
}

.color-inicio {
    background-color: rgb(255, 251, 233)
}

.color-ejemplos {
    background-color: #f2f2f2;
}

.color-costo {
    background-color: #e6fffe;
}

.color-estructura {
    background-color: #ffffff;
}

/* nav */
nav.nav-principal {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
    /* background-color: #fff; */
}

nav.nav-principal>ul.nav-principal_movil {}

nav.nav-principal>ul.nav-principal_desktop {
    display: none;
}

nav.nav-principal>ul {
    display: flex;
    /* background-color: #fff; */
    color: #000;
    justify-content: flex-end;
    align-items: center;
}

nav.nav-principal>ul>li {
    list-style: none;
    padding: 1rem 1.2rem;
}

nav.nav-principal>ul>li>a {
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
}

nav.nav-principal>ul>span.separador {
    margin: 0 auto;
}

nav.nav-principal>ul>li>a.nav-accion {
    text-decoration: dashed underline #58c3bd .2rem;
    text-underline-offset: .5rem;
    font-weight: 700;
    letter-spacing: .1rem;
}

/* secciones */
section {
    min-height: 100vh;
}

section.seccion-inicio,
section.seccion-ejemplos,
section.seccion-costo,
section.seccion-estructura {
    margin: 0;
    padding: 4rem 1.2rem;
}

section.seccion-inicio,
section.seccion-ejemplos,
section.seccion-costo,
section.seccion-estructura,
body {
    transition: background-color .3s ease-in-out;
}

nav.nav-principal,
footer.footer {
    transition: background-color .3s ease-in-out;
}

img.logo-scnc {
    max-height: 1.2rem;
    padding-left: .5rem;
}

/* 
section.seccion-inicio{
    background-color: white;
}
section.seccion-ejemplos{
    background-color: white;
}
section.seccion-costo{
    background-color: white;
} */

/* diseño de fonts */


h1.seccion-inicio_texto--h1,
h1.seccion-ejemplos--h1,
h1.seccion-costo--h1,
h1.seccion-estructura--h1 {
    font-size: 3.6rem;
    font-weight: 900;
}

h1.seccion-ejemplos--h1>a,
h1.seccion-costo--h1>a {
    font-size: 2rem;
    font-weight: 400;
    text-decoration: none;
}

h1.seccion-ejemplos--h1>span,
h1.seccion-costo--h1>span {
    color: gray;
    font-size: 2rem;
    font-weight: 400;
    text-decoration: none;
    padding: 0 3rem;
}

h2.seccion-ejemplos_ejemplo--h2,
h2.seccion-costo_costo--h2 {
    font-size: 2.4rem;
    font-weight: 700;
}

h3.seccion-costo_costo--h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

p.seccion-inicio_texto--p,
p.seccion-ejemplos_ejemplo--p,
p.seccion-costo_costo--p {
    font-size: 1.6rem;
    font-weight: 400;
}

p.seccion-ejemplos_ejemplo--p {
    display: inline-block;
}

p.footer--p,
div.seccion-costo_costo--explicacion>p.seccion-costo_costo--p {
    font-size: 1.2rem;
    font-weight: 400;
}

a.seccion-inicio_texto--cta,
a.seccion-ejemplos_ejemplo--cta {
    display: inline-block;
    background-color: #ffcc05;
    color: #000;
    padding: .6rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 2rem 2rem 2rem 0;
}

p.seccion-inicio_texto--p {
    font-size: 1.6rem;
    font-weight: 400;
}

p.seccion-inicio_texto--p>a.seccion-inicio_texto--a,
p.seccion-ejemplos_ejemplo--p>a.seccion-ejemplos_ejemplo--a {
    background-color: #58c3bd;
    color: #000;
    padding: .6rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
}

/* seccion inicio */
section.seccion-inicio {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: center;
}

section.seccion-inicio>div.seccion-inicio_imagen-container {
    display: block;
    width: 100%;
    height: 230px;
    max-width: 400px;
}

section.seccion-inicio>div.seccion-inicio_imagen-container>div.seccion-inicio_imagen {
    width: 100%;
    height: 100%;
    background-image: url(../img/tumenu-hero-mobile.png);
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* ejemplo */
div.seccion-ejemplos_ejemplo {}

a.boton-izquierda,
a.boton-derecha {
    display: none;
}

img.seccion-ejemplos_ejemplo--qr {
    display: block;
    max-width: 100px;
    margin: 0 auto;
}

p.seccion-ejemplos_ejemplo--p-qr {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
}

/* costo */
div.seccion-costo_costo--explicacion {
    background-color: #ffcc05;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

/* footer */

footer.footer {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    justify-content: center;
    /* background-color: #fff; */
    color: #000;
    padding: 1rem 1.2rem;
}

/* separador */
div.separador-1 {
    width: 100%;
    height: 1px;
    background-color: #929597;
    margin: 4rem 0;
}

div.separador-2 {
    width: 100%;
    height: 1px;
    margin: 2rem 0;
}

/* seccion estructura */
div.seccion-estructura-container {
    display: flex;
    flex-grow: 1;
    max-width: 550px;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    padding: 1rem;
    border: 1px solid #929597;
    border-radius: 1rem;

}

p.seccion-estructura_explicacion {
    font-size: 1.2rem;
    font-weight: 600;
}

div.seccion-estructura_dibujo {
    width: 100%;
    min-height: 50px;
    border: 1px solid #929597;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

span.seccion-estructura_dibujo--logo {
    font-size: 2rem;
}

span.seccion-estructura_dibujo--nombre {
    font-size: 1.2rem;
}

span.seccion-estructura_dibujo--slogan {
    font-size: 1.2rem;
    color: #929597;
}

span.seccion-estructura_dibujo--horarios {
    padding: 1rem 0;
    text-align: center;
    font-size: 1rem;
    color: #929597;
}

span.seccion-estructura_dibujo--direccion {}

span.seccion-estructura_dibujo--ctas {
    padding: 1rem 0;
}

span.seccion-estructura_dibujo--ctas-cta {
    background-color: #929597;
    border-radius: 1rem;
    padding: .4rem .8rem;
}

div.seccion-estructura_dibujo_botones {
    display: flex;
    flex-direction: row;
    padding: 1rem 0;
}

span.seccion-estructura_dibujo--boton-seccion {
    color: #929597;
    text-decoration: underline;
    padding: 0 .5rem;
}

div.seccion-estructura_explicaciones-desktop {
    display: none;
}

/* div.seccion-ejemplos_ejemplo>div.seccion-ejemplos_ejemplo--container-imagen>img {
    max-width: 350px;
} */

div.seccion-ejemplos_ejemplo>div.seccion-ejemplos_ejemplo--container-imagen--1 {
    background-image: url(../img/menus/ejemplo1-desktop.png);
}

div.seccion-ejemplos_ejemplo>div.seccion-ejemplos_ejemplo--container-imagen--2 {
    background-image: url(../img/menus/ejemplo2-desktop.png);
}

div.seccion-ejemplos_ejemplo>div.seccion-ejemplos_ejemplo--container-imagen {
    display: block;
    height: 300px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    /* background-color: #58c3bd; */
    border-radius: 1rem;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

@media screen and (min-width: 650px) {
    section.seccion-inicio {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    section.seccion-inicio>div.seccion-inicio_imagen-container {
        height: calc(100vh - 8rem);
    }

    div.seccion-estructura-container>p.seccion-estructura_explicacion {
        display: none;
    }


    div.seccion-estructura_dibujo {
        margin: 1rem 0;
    }

    div.seccion-estructura_explicacion--container {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
    }

    div.seccion-estructura_explicaciones-desktop {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1rem;
    }

    div.seccion-estructura_explicaciones-desktop>div.seccion-estructura_explicacion {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin: 1rem 0;
    }

    div.seccion-estructura_explicaciones-desktop>div.seccion-estructura_explicacion>p {
        font-size: 1.2rem;
        font-weight: 600;
        border: 1px dashed #58c3bd;
        padding: 1rem;
        border-radius: 1rem;
    }

    div.seccion-estructura_explicaciones-desktop>div.seccion-estructura_explicacion>p::before {
        content: "<---";
        position: absolute;
        /* left: -40px; */
        margin-left: -50px;
        font-size: 1.2rem;
        color: #58c3bd;

    }

}

@media screen and (min-width: 700px) {

    .separador-1,
    .separador-2 {
        display: none;
    }

    .snaps-inline {
        scroll-snap-type: inline mandatory;
        scroll-padding-inline: 1rem;
    }

    .snaps-inline>* {
        scroll-snap-align: center;
    }

    section.seccion-ejemplos {
        margin: 0;
        padding: 4rem 0rem;
    }

    /* diseño de fonts */


    h1.seccion-ejemplos--h1,
    h1.seccion-costo--h1,
    h1.seccion-estructura--h1 {
        display: block;
        margin: 0;
        padding: 0 1.2rem;
    }

    /* para ejemplos */
    div.seccion-ejemplos_container-ejemplos {
        display: grid;
        height: calc(100vh - 8rem);
        grid-auto-flow: column;
        grid-auto-columns: 80%;
        gap: 3rem;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
    }

    div.seccion-ejemplos_ejemplo {
        display: flex;
        align-items: center;
    }

    div.seccion-ejemplos_ejemplo>div.seccion-ejemplos_ejemplo--container-texto {
        width: 50%;
    }

    /* div.seccion-ejemplos_ejemplo>div.seccion-ejemplos_ejemplo--container-imagen {
        height: calc(100vh - 8rem - 90px);
        margin-right: 1rem;
        width: 50%;
    } */

    /* div.seccion-ejemplos_ejemplo>div.seccion-ejemplos_ejemplo--container-imagen>img {
        max-width: 100%;
        height: 100%;
        border-radius: 1rem;
    } */

    div.seccion-ejemplos_ejemplo>div.seccion-ejemplos_ejemplo--container-imagen--1 {
        background-image: url(../img/menus/ejemplo1.png);
    }

    div.seccion-ejemplos_ejemplo>div.seccion-ejemplos_ejemplo--container-imagen--2 {
        background-image: url(../img/menus/ejemplo2.png);
    }

    div.seccion-ejemplos_ejemplo>div.seccion-ejemplos_ejemplo--container-imagen {
        display: block;
        height: calc(100vh - 8rem - 90px);
        width: 50%;
        margin: 0 1rem;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        box-shadow: none;
    }

    /* para costos */
    div.seccion-costo_container-costos {
        /* display: grid;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        gap: 3rem;
        overflow-x: auto;
        overscroll-behavior-inline: contain; */
        display: flex;
        flex-direction: column;
    }

    div.seccion-costo_costo {
        display: flex;
        flex-direction: column;
    }

    div.seccion-costo_costo>div.seccion-costo_costo--explicacion {
        display: flex;
        text-align: left;
        flex-direction: column;
        /* margin-left: 1rem; */
        padding: 2rem 5rem;
    }

    div.seccion-costo_costo>div.seccion-costo_costo--encabezado {
        /* margin-left: 1rem; */
    }

    div.seccion-costo_costo--encabezado>h2.seccion-costo_costo--h2 {
        padding-top: 3rem;
    }

    div.seccion-costo_costo--explicacion>h3.seccion-costo_costo--h3 {
        font-size: 2rem;
        font-weight: 700;
        margin: 2rem 0 1rem 0;
    }

    div.seccion-costo_costo--explicacion>p.seccion-costo_costo--p {
        font-size: 1.6rem;
        font-weight: 400;
    }
}

@media screen and (min-width: 780px) {
    nav.nav-principal>ul.nav-principal_movil {
        display: none;
    }

    nav.nav-principal>ul.nav-principal_desktop {
        display: flex;
    }
}

@media screen and (min-width: 1100px) {

    section.seccion-inicio,
    section.seccion-estructura {
        max-width: 1200px;
    }

    h1.seccion-ejemplos--h1,
    h1.seccion-costo--h1,
    h1.seccion-estructura--h1 {
        display: block;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* section.seccion-ejemplos, section.seccion-costo {
        margin: 0;
        padding: 4rem 0;
    } */

    section.seccion-inicio,
    section.seccion-estructura {
        margin: 0 auto;
        position: relative;
    }

    section.seccion-inicio>div.seccion-inicio_imagen-container {
        max-width: 550px;
    }

    div.seccion-costo_costo {
        display: flex;
        flex-direction: row;
    }

    div.seccion-ejemplos_container-ejemplos,
    div.seccion-costo_container-costos {
        padding: 0 3rem;
    }

    div.seccion-ejemplos_container-ejemplos {
        grid-auto-columns: 60%;
    }

    div.seccion-costo_costo>div.seccion-costo_costo--explicacion {
        margin-left: 1rem;
        margin-bottom: 4rem;
        flex: 1 1 70%;
    }

    div.seccion-costo_costo>div.seccion-costo_costo--encabezado {
        flex: 1 1 30%;
    }
}

@media screen and (min-width: 1200px) {

    section.seccion-ejemplos {
        scroll-behavior: smooth;
    }

    div.seccion-ejemplos_container-ejemplos,
    div.seccion-costo_container-costos {
        padding-left: calc(((100vw - 1200px) / 2) + 1.2rem);
        padding-right: calc(((100vw - 1200px) / 2) + 1.2rem);
    }

    section.seccion-ejemplos {
        position: relative;
    }

    a.boton-izquierda,
    a.boton-derecha {
        display: inline-block;
        padding: 0rem 2rem;
        background: white;
        border: 1px solid black;
        border-radius: 2rem;
        font-size: 4rem;
        /* position at 50% of parent */
        position: absolute;
        top: 50%;
        text-decoration: none;
        color: black;
    }

    a.boton-izquierda {
        left: 10px;
    }

    a.boton-derecha {
        right: 10px;
    }
}

/* para la promo */
.popup-container {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 100;
}

.popup-container.no-mostrar {
    display: none;
}

.popup-container.mostrar {
    display: block;
}

.popup-promo {
    background-color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.popup-promo_descuento--container {
    display: flex;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #58c3bd;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
}

h2.popup-promo--h2 {
    font-size: 2.4rem;
    font-weight: 700;
}

h1.popup-promo--h1 {
    font-size: 3.6rem;
    font-weight: 900;
}

p.popup-promo--p {
    font-size: 1.6rem;
    font-weight: 400;
}

span.popup-promo_nombre-cliente {
    font-weight: 700;
}

a.popup-promo--boton {
    display: block;
    background-color: #ffcc05;
    color: #000;
    padding: .6rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.6rem;
    margin-top: 1rem;
}

.seccion-costo_costo--descuento {
    display: none;
}

.seccion-costo_costo--precio-normal.hay-descuento {
    text-decoration: line-through;
    color: gray;
}

.seccion-costo_costo--descuento.hay-descuento {
    display: inline-block;
    background-color: red;
    color: white;
    font-weight: 700;
    padding: 0 .3rem;
    margin-bottom: .2rem;
}

@media screen and (min-width: 1100px) {
    .seccion-costo_costo--descuento.hay-descuento {
        padding: 2rem;
        border-radius: 4rem;
    }
}