
html,
body{
    overflow-x:hidden;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#fff;
    color:#000;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    position:sticky;
    top:0;
}

.logo img{
    height:90px;

}

nav a{
    text-decoration:none;
    color:#000;
    margin-left:20px;
    font-weight:bold;
}

nav a:hover{
    color:#E32684;
}

.boton{
    background:#E32684;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:bold;
    transition:.3s;
}

.boton:hover{
    background:#c61b72;
}

section{
    padding:60px 10%;
}


h2{
    text-align:center;
    margin-bottom:40px;
    color:#E32684;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.card{
    background:white;
    border-radius:15px;
    padding:30px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    text-align:center;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.hero p{
    font-size:22px;
    line-height:1.6;
}
.card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:20px;
}

.card p{
    color:#666;
    margin:15px 0;
    line-height:1.5;
}

.boton-card{
    display:inline-block;
    background:#E32684;
    color:white;
    text-decoration:none;
    padding:12px 25px;
    border-radius:30px;
    margin-top:10px;
    transition:.3s;
}

.boton-card:hover{
    background:#c51f74;
}

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

    min-height:90vh;

    padding:80px 10%;

    background:linear-gradient(135deg,#FCE4EC,#ffffff);
}

.etiqueta{

    display:inline-block;
    background:#FCE4EC;
    color:#E32684;
    padding:10px 20px;
    border-radius:50px;
    font-weight:bold;
    margin-bottom:25px;

}

.botones{

    display:flex;
    gap:20px;
    margin-top:30px;

}

.boton2{

    text-decoration:none;
    border:2px solid #E32684;
    color:#E32684;
    padding:15px 35px;
    border-radius:40px;
    transition:.3s;

}

.boton2:hover{

    background:#E32684;
    color:white;

}
.nosotros{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.nosotros-texto{
    flex:1;
}

.nosotros-imagen{
    flex:1;
    text-align:center;
}

.nosotros-imagen img{
    width:350px;
    max-width:100%;
}
.contacto{
    text-align:center;
    background:#fff8fb;
}

.info-contacto{
    max-width:600px;
    margin:auto;
}

.info-contacto p{
    margin:15px 0;
    font-size:20px;
}
footer{
    background:#E32684;
    color:white;
    padding:50px 20px;
    text-align:center;
}

.footer-contenido img{
    width:120px;
    margin-bottom:20px;
}

.footer-contenido h3{
    font-size:30px;
    margin-bottom:10px;
}

.footer-contenido p{
    margin:10px 0;
}

.footer-contenido a{
    display:inline-block;
    margin-top:20px;
    padding:15px 35px;
    background:white;
    color:#E32684;
    text-decoration:none;
    border-radius:40px;
    font-weight:bold;
    transition:.3s;
}

.footer-contenido a:hover{
    transform:scale(1.05);
}.opiniones{
    background:#fff5f9;
    text-align:center;
}

.opiniones-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.opinion{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.opinion:hover{
    transform:translateY(-10px);
}

.opinion p{
    margin:20px 0;
    line-height:1.7;
}

.opinion h4{
    color:#E32684;
}
.galeria{
    text-align:center;
    background:white;
}

.galeria-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:40px;
}

.galeria-grid img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:20px;
    cursor:pointer;
    transition:.4s;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.galeria-grid img:hover{
    transform:scale(1.05);
}/* ==========================
   FOOTER
========================== */

.footer{
    background:#e91e63;
    color:white;
    text-align:center;
    padding:35px 20px;
    margin-top:80px;
}

.footer p{
    margin:8px 0;
    font-size:16px;
}
/*==========================
    ANIMACIÓN TARJETAS
==========================*/

.card{
    overflow: hidden;
}

.card img{
    transition:0.4s;
}

.card:hover img{
    transform:scale(1.08);
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}
.boton,
.boton2,
.boton-card{
    transition:.3s;
}

.boton:hover,
.boton-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(233,30,99,.35);
}

.boton2:hover{
    background:#e91e63;
    color:white;
}
nav a{
    position:relative;
}

nav a::after{

    content:"";
    position:absolute;

    width:0;
    height:3px;

    left:0;
    bottom:-8px;

    background:#e91e63;

    transition:.3s;

}

nav a:hover::after{

    width:100%;

}
.logo img{

    transition:.4s;

}

.logo img:hover{

    transform:scale(1.08) rotate(-3deg);

}
/*==========================
    BARRA DE PROMOCIÓN
==========================*/

.promo{
    width:100%;
    background:#e91e63;
    color:white;
    text-align:center;
    padding:15px;
    font-weight:600;
    letter-spacing:1px;
}
/*==========================
    ESTADÍSTICAS
==========================*/

.estadisticas{

display:flex;

justify-content:center;

gap:80px;

flex-wrap:wrap;

padding:70px 10%;

background:white;

}


.estadisticas h2{

    color:#e91e63;

    font-size:50px;

}

.estadisticas p{

    font-size:18px;

    color:#666;

}
/*==========================
    HERO IMAGEN
==========================*/

.hero-imagen img{

    width:100%;
    max-width:500px;

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

    transition:.4s;

}

/* ============================= */
/*           TABLETS             */
/* ============================= */

@media (max-width: 992px){

    .contenedor{
        flex-direction: column;
        text-align:center;
    }

}
/* ============================= */
/*          CELULARES            */
/* ============================= */

@media (max-width:768px){

    nav{
        flex-direction:column;
        gap:20px;
    }

    .hero{
        padding:70px 20px;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .hero p{
        font-size:1rem;
    }

    .botones{
        flex-direction:column;
    }

    .cards{
        grid-template-columns:1fr;
    }

    footer{
        text-align:center;
    }

}
@media (max-width:480px){

    h1{
        font-size:2rem;
    }

    h2{
        font-size:1.5rem;
    }

    p{
        font-size:0.95rem;
    }

    .hero{
        padding:50px 15px;
    }

}
/* ========================= */
/*        NAVBAR             */
/* ========================= */

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.menu{

    display:flex;
    gap:25px;
    list-style:none;

}

.menu a{
    color:#333;
    text-decoration:none;
    font-weight:600;
}

.hamburguesa{

    display:none;
    font-size:32px;
    cursor:pointer;

}
@media (max-width:768px){

    .navbar{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-wrap:wrap;
    }

    .hamburguesa{
        display:block;
        font-size:32px;
        cursor:pointer;
    }

    .menu{
        display:none;
        flex-direction:column;
        width:100%;
        list-style:none;
        padding:15px 0;
    }

    .menu.activo{
        display:flex;
    }

    .menu li{
        margin:12px 0;
    }

}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    z-index: 1000;
}

body{
    padding-top: 90px;
}
a,
button,
img{
    transition: .3s ease;
}
.menu a{

    position:relative;

}

.menu a::after{

    content:"";
    position:absolute;
    width:0;
    height:3px;
    background:#ff9800;
    left:0;
    bottom:-6px;
    transition:.3s;

}

.menu a:hover::after{

    width:100%;

}
.boton{

    background:#ff9800;
    color:white;
    padding:15px 35px;
    border-radius:50px;
    border:none;
    cursor:pointer;
    font-weight:bold;

}

.boton:hover{

    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.2);

}
.card{

    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}
.card img{

    transition:.4s;

}

.card:hover img{

    transform:scale(1.08);

}
.hero{

    animation: aparecer 1s ease;

}

@keyframes aparecer{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}
.productos{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}
.boton{

    background:#D8C4F0;
    color:white;
    border-radius:50px;
    padding:15px 35px;
    font-weight:bold;

}

.boton:hover{

    transform:translateY(-4px);

}
.card{

    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.card:hover{

    transform:translateY(-10px);

}
.hero{

    animation:fade 1s;

}

@keyframes fade{

from{

opacity:0;
transform:translateY(30px);

}

to{

opacity:1;
transform:translateY(0);

}

}
#catalogo{

    padding:80px 8%;
    background:#fafafa;

}

#catalogo h2{

    text-align:center;
    margin-bottom:50px;
    font-size:40px;

}

.contenedor-productos{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}
.card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

}
.card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 35px rgba(0,0,0,.15);

}
.card img{

    width:100%;

    height:350px;

    object-fit:cover;

    transition:.4s;

}
.info{

    padding:25px;

}
.info h3{

    margin-bottom:10px;

    color:#4A4E69;

}
.info p{

    margin-bottom:12px;

}
.btn-whatsapp{

    display:block;

    text-align:center;

    background:#25D366;

    color:white;

    text-decoration:none;

    padding:15px;

    border-radius:12px;

    margin-top:20px;

    font-weight:bold;

}.btn-whatsapp:hover{

    background:#1ebe5d;

}
.filtros{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:40px;

}
.filtros button{

    border:none;

    background:#eeeeee;

    padding:12px 25px;

    border-radius:30px;

    cursor:pointer;

    font-size:15px;

    transition:.3s;

}
.filtros button:hover{

    background:#4A4E69;

    color:white;

}
.filtros .activo{

    background:#4A4E69;

    color:white;

}
/* ========================= */
/*         LIGHTBOX          */
/* ========================= */

.lightbox{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.9);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9999;

}
.lightbox.activo{

    opacity:1;

    visibility:visible;

}
.lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:20px;

    animation:zoom .3s;

}
.cerrar{

    position:absolute;

    top:30px;

    right:40px;

    font-size:45px;

    color:white;

    cursor:pointer;

}
@keyframes zoom{

from{

transform:scale(.8);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}
.modal{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.7);

display:none;

justify-content:center;

align-items:center;

z-index:9999;

}.modal{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.7);

display:none;

justify-content:center;

align-items:center;

z-index:9999;

}
.modal.activo{

display:flex;

}
.modal-contenido{

background:white;

padding:35px;

border-radius:20px;

width:90%;

max-width:600px;

text-align:center;

position:relative;

animation:aparecer .3s;

}
.modal img{

width:100%;

border-radius:15px;

margin-bottom:20px;

}
.cerrar-modal{

position:absolute;

top:15px;

right:25px;

font-size:35px;

cursor:pointer;

}
.btn-detalles{

width:100%;

padding:15px;

border:none;

background:#4A4E69;

color:white;

border-radius:10px;

cursor:pointer;

margin-top:20px;

font-size:16px;

}
#modal-whatsapp{

    display:inline-block;

    margin-top:25px;

    background:#25D366;

    color:white;

    text-decoration:none;

    padding:15px 30px;

    border-radius:10px;

    font-weight:bold;

    transition:.3s;

}
#modal-whatsapp:hover{

    transform:translateY(-3px);

    background:#1ebe5d;

}
.modal-contenido{

    animation:subir .35s ease;

}
@keyframes subir{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
@media (max-width: 768px){

    .menu{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
    }

    .menu.activo{
        display: flex;
    }

    .hamburguesa{
        display: block;
        font-size: 32px;
        cursor: pointer;
    }

}