/*==================================================
            RESPONSIVE ICA
==================================================*/


/*==================================================
        CELULARES (hasta 768px)
==================================================*/

@media (max-width:768px){

/*==========================
        CONTENEDOR
==========================*/

.contenedor{
    width:94%;
}

/*==========================
        HEADER
==========================*/

.header .contenedor{
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:14px;
    height:auto;
    padding:16px 0;
}

.logo img{
    width:90px;
}

/*==========================
        MENÚ
==========================*/

.menu{
    width:100%;
}

.menu ul{
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    width:100%;
    gap:0;
    padding:0 10px;
}

.menu a{
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
    text-align:center;
}

/*==========================
        HERO
==========================*/

.hero{
    padding:45px 0 60px;
}

.hero-contenido{
    grid-template-columns:1fr;
    gap:35px;
}

.hero-texto{
    text-align:center;
}

.hero-etiqueta{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    text-align:center;
    padding:16px 20px;
    line-height:1.4;
    font-size:1rem;
}

.hero-etiqueta strong{
    font-size:1.5rem;
    line-height:1;
}

.hero h1{
    font-size:2.3rem;
    line-height:1.15;
}

.hero p{
    font-size:1rem;
    margin:0 auto 28px;
}

/*==========================
        BUSCADOR
==========================*/

.buscador{
    flex-direction:column;
    border-radius:22px;
}

.buscador input{
    width:100%;
    text-align:center;
    padding:18px;
}

.buscador button{
    width:100%;
    padding:18px;
}

/*==========================
        IMAGEN HERO
==========================*/

.hero-imagen{
    min-height:auto;
}

.estelas{
    display:none;
}

.faro{
    max-width:320px;
    width:100%;
    margin:0 auto;
}

/*==========================
        AYUDA
==========================*/

.hero-ayuda{
    text-align:center;
}

.btn-ayuda{
    width:100%;
    justify-content:center;
}

.btn-whatsapp{
    width:100%;
    justify-content:center;
    margin:0;
    padding:16px;
}
/*==========================
        BENEFICIOS
==========================*/

.beneficios{

    padding:70px 0;

}

.beneficios-grid{

    grid-template-columns:1fr;

    gap:25px;

}

.beneficio{

    padding:35px 25px;

}

.beneficio .icono{

    width:80px;

    height:80px;

    font-size:30px;

}

.beneficio h3{

    font-size:22px;

}

/*==========================
        CATEGORÍAS
==========================*/

.categorias{

    padding:70px 0;

}

.categorias-grid{

    grid-template-columns:1fr;

    gap:30px;

}

.categoria-card{

    width:100%;

    max-width:420px;

    margin:0 auto;

}

.categoria-imagen{

    height:340px;

}

.categoria-info{

    left:24px;

    right:24px;

    bottom:28px;

}

.categoria-info h3{

    font-size:30px;

}

.categoria-info p{

    font-size:16px;

}

/*==========================
      CÓMO FUNCIONA
==========================*/

.como-funciona{

    padding:70px 0;

}

.pasos-grid{

    grid-template-columns:1fr;

    gap:25px;

    margin-top:40px;

}

.pasos-grid::before{

    display:none;

}

.paso{

    width:100%;

    max-width:420px;

    margin:0 auto;

    padding:35px 25px;

}

.paso-icono{

    width:80px;

    height:80px;

    font-size:30px;

}

.paso-icono i{

    font-size:30px;

}

.paso h3{

    font-size:24px;

}

.paso p{

    font-size:15px;

}
/*==========================
        TÍTULOS
==========================*/

.titulo-seccion{

    margin-bottom:45px;

}

.titulo-seccion span{

    font-size:.85rem;

}

.titulo-seccion h2{

    font-size:2rem;

    line-height:1.2;

}

.titulo-seccion p{

    font-size:1rem;

    line-height:1.7;

}

/*==========================
        FOOTER
==========================*/

.footer{

    padding:60px 0 0;

}

.footer-grid{

    grid-template-columns:1fr;

    gap:40px;

    text-align:center;

    margin-bottom:40px;

}

.footer-logo{

    width:140px;

    margin:0 auto 20px;

}

.footer h3{

    font-size:20px;

}

.footer h3::after{

    left:50%;

    transform:translateX(-50%);

}

.footer ul{

    align-items:center;

}

.footer ul li{

    justify-content:center;

}

.redes-sociales{

    justify-content:center;

}

.copyright{

    padding:20px 15px;

    font-size:14px;

}

/*==========================
        AJUSTES GENERALES
==========================*/

section{

    padding-left:0;

    padding-right:0;

}

img{

    max-width:100%;

    height:auto;

}

button{

    min-height:48px;

}

input{

    min-height:48px;

}

/*==========================
        LUPA FLOTANTE
==========================*/

.lupa-flotante{

    position:fixed;

    right:20px;

    bottom:20px;

    width:58px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#FFD100;

    color:#111;

    font-size:22px;

    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    opacity:0;

    visibility:hidden;

    transform:scale(.8);

    transition:.30s;

    z-index:9999;

}

.lupa-flotante.mostrar{

    opacity:1;

    visibility:visible;

    transform:scale(1);

}

/*==========================
        FIN MÓVIL
==========================*/

}
/*==================================================
        CELULARES MUY PEQUEÑOS
==================================================*/

@media (max-width:480px){

    .hero h1{

        font-size:2rem;

    }

    .hero p{

        font-size:.95rem;

    }

    .titulo-seccion h2{

        font-size:1.8rem;

    }

    .categoria-imagen{

        height:300px;

    }

    .categoria-info h3{

        font-size:26px;

    }

    .paso{

        padding:30px 20px;

    }

    .beneficio{

        padding:30px 20px;

    }

    .btn-whatsapp{

        font-size:15px;

    }

}

/*==================================================
                TABLETS
==================================================*/

@media (min-width:769px) and (max-width:991px){

/*==========================
        CONTENEDOR
==========================*/

.contenedor{

    width:92%;

}

/*==========================
        HEADER
==========================*/

.header .contenedor{

    flex-wrap:wrap;

    height:auto;

    padding:20px 0;

    gap:20px;

}

.menu{

    width:100%;

}

.menu ul{

    justify-content:center;

    gap:28px;

}

.btn-whatsapp{

    margin:0 auto;

}

/*==========================
        HERO
==========================*/

.hero{

    padding:80px 0;

}

.hero-contenido{

    grid-template-columns:1fr;

    gap:50px;

}

.hero-texto{

    text-align:center;

}

.hero h1{

    font-size:3.2rem;

}

.hero p{

    max-width:700px;

    margin:0 auto 35px;

}

.faro{

    max-width:500px;

    margin:0 auto;

}

.estelas{

    display:none;

}
/*==========================
        BENEFICIOS
==========================*/

.beneficios-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

/*==========================
        CATEGORÍAS
==========================*/

.categorias-grid{

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.categoria-card:last-child{

    grid-column:1 / -1;

    max-width:420px;

    margin:0 auto;

}

.categoria-imagen{

    height:420px;

}

/*==========================
      CÓMO FUNCIONA
==========================*/

.pasos-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.pasos-grid::before{

    display:none;

}

.paso:last-child{

    grid-column:1 / -1;

    max-width:420px;

    margin:0 auto;

}

/*==========================
        FOOTER
==========================*/

.footer-grid{

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

}
/*==================================================
                LAPTOPS
==================================================*/

@media (min-width:992px) and (max-width:1199px){

/*==========================
        CONTENEDOR
==========================*/

.contenedor{

    width:92%;

}

/*==========================
        HEADER
==========================*/

.menu ul{

    gap:28px;

}

.btn-whatsapp{

    padding:14px 22px;

}

/*==========================
        HERO
==========================*/

.hero{

    padding:90px 0;

}

.hero-contenido{

    gap:50px;

}

.hero h1{

    font-size:3.6rem;

}

.hero p{

    font-size:1.05rem;

}

.faro{

    width:520px;

    margin-left:20px;

}

.estelas{

    width:620px;

}

/*==========================
        BENEFICIOS
==========================*/

.beneficios-grid{

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

/*==========================
        CATEGORÍAS
==========================*/

.categorias-grid{

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.categoria-imagen{

    height:460px;

}

.categoria-info h3{

    font-size:32px;

}
/*==========================
      CÓMO FUNCIONA
==========================*/

.pasos-grid{

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.pasos-grid::before{

    display:none;

}

.paso{

    min-height:100%;

}

/*==========================
        FOOTER
==========================*/

.footer-grid{

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:35px;

}

}
/*==================================================
            DESKTOP / PANTALLAS GRANDES
==================================================*/

@media (min-width:1200px){

/*==========================
        CONTENEDOR
==========================*/

.contenedor{

    width:90%;

    max-width:1400px;

}

/*==========================
        HERO
==========================*/

.hero{

    padding:120px 0;

}

.hero-contenido{

    gap:90px;

}

.hero h1{

    font-size:4.5rem;

}

.hero p{

    max-width:650px;

}

.faro{

    width:650px;

}

.estelas{

    width:760px;

}

/*==========================
        BENEFICIOS
==========================*/

.beneficios-grid{

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

/*==========================
        CATEGORÍAS
==========================*/

.categorias-grid{

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}

.categoria-imagen{

    height:560px;

}

/*==========================
      CÓMO FUNCIONA
==========================*/

.pasos-grid{

    grid-template-columns:repeat(5,1fr);

    gap:30px;

}

.pasos-grid::before{

    display:block;

}

/*==========================
        FOOTER
==========================*/

.footer-grid{

    grid-template-columns:2fr 1fr 1fr 1.3fr;

}

}