/* ========================================= */
/* GOOGLE FONTS */
/* ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&family=Allura&display=swap');
/* ========================================= */
/* RESET */
/* ========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

/* ========================================= */
/* VARIABLES */
/* ========================================= */

:root{

    --rosa:#d98ca3;
    --rosa-hover:#c8758f;

    --lila:#8e6aa8;

    --crema:#fff9f7;

    --marron:#6b4b4b;

    --texto:#5e4b4b;

    --gris:#7a7a7a;

    --beige:#f7efea;

    --blanco:#ffffff;

    --shadow:0 10px 30px rgba(0,0,0,0.08);

}

/* ========================================= */
/* BODY */
/* ========================================= */

body{

    font-family:'Poppins', sans-serif;

    background:var(--crema);

    color:var(--texto);

    overflow-x:hidden;

    line-height:1.7;

}

/* ========================================= */
/* GENERAL */
/* ========================================= */

section{

    padding:100px 8%;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

/* ========================================= */
/* HEADER */
/* ========================================= */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:18px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(255,255,255,0.92);

    backdrop-filter:blur(10px);

    z-index:1000;

    box-shadow:0 5px 20px rgba(0,0,0,0.05);

}

/* ========================================= */
/* LOGO */
/* ========================================= */

.logo img{

    width:170px;

}

/* ========================================= */
/* NAVBAR */
/* ========================================= */

.navbar{

    display:flex;

    gap:18px;

    background:rgba(255,240,245,0.9);

    padding:12px 22px;

    border-radius:50px;

    box-shadow:var(--shadow);

}

.navbar a{

    color:var(--marron);

    font-weight:600;

    padding:10px 20px;

    border-radius:30px;

    transition:0.3s;

}

.navbar a:hover{

    background:var(--rosa);

    color:white;

}

/* ========================================= */
/* HERO */
/* ========================================= */

.hero{

    min-height:100vh;

    background:
    linear-gradient(
        rgba(255,255,255,0.55),
        rgba(255,255,255,0.55)
    ),
    url("img/Fondo.jpeg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    padding:140px 8% 100px;

}

/* ========================================= */
/* HERO OVERLAY */
/* ========================================= */

.hero-overlay{

    position:absolute;

    inset:0;

}

/* ========================================= */
/* HERO CONTENT */
/* ========================================= */

.hero-content{

    position:relative;

    z-index:2;

    max-width:800px;

}

.hero-content h1{

    font-family:'Allura', cursive;

    font-size:8rem;

    color:#b15f7d;

    font-weight:400;

    letter-spacing:2px;

    text-shadow:0 4px 10px rgba(0,0,0,0.08);

}

.hero-content h2{

    font-family:'Playfair Display', serif;

    font-size:3rem;

    color:var(--lila);

    margin-bottom:25px;

}

.hero-content p{

    font-size:1.2rem;

    color:var(--marron);

    margin-bottom:40px;

    font-weight:500;

}

/* ========================================= */
/* LINEA DECORATIVA */
/* ========================================= */

.hero-line{

    width:220px;

    height:2px;

    background:#e4b6c3;

    margin:25px auto;

    position:relative;

}

.hero-line::after{

    content:"♥";

    position:absolute;

    top:-14px;

    left:50%;

    transform:translateX(-50%);

    color:#d98ca3;

    font-size:1.2rem;

}

/* ========================================= */
/* BOTON PRINCIPAL */
/* ========================================= */

.btn-principal{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        #e79ab0,
        #d98ca3
    );

    color:white;

    padding:18px 42px;

    border-radius:50px;

    font-weight:600;

    font-size:1.1rem;

    transition:0.3s;

    box-shadow:0 10px 20px rgba(217,140,163,0.3);

}

.btn-principal:hover{

    transform:translateY(-5px);

}

/* ========================================= */
/* WAVE */
/* ========================================= */

.wave{

    position:absolute;

    bottom:-5px;

    left:0;

    width:100%;

    line-height:0;

}

.wave svg{

    width:100%;

    display:block;

}

/* ========================================= */
/* TITULOS */
/* ========================================= */

.titulo-seccion{

    text-align:center;

    margin-bottom:60px;

}

.titulo-seccion h2{

    font-size:2.7rem;

    color:var(--rosa);

    margin-bottom:15px;

    font-family:'Playfair Display', serif;

}

.titulo-seccion p{

    color:var(--gris);

    max-width:700px;

    margin:auto;

}

/* ========================================= */
/* NOSOTROS */
/* ========================================= */

.nosotros-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.nosotros-img img{

    max-width:400px;

    margin:auto;

    border-radius:25px;

    box-shadow:var(--shadow);

}

.nosotros-texto h2{

    font-size:2.5rem;

    color:var(--rosa);

    margin-bottom:25px;

    font-family:'Playfair Display', serif;

}

.nosotros-texto p{

    margin-bottom:20px;

    color:var(--gris);

}

/* ========================================= */
/* BENEFICIOS */
/* ========================================= */

.beneficios{

    background:var(--beige);

}

.beneficios-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.beneficio-card{

    background:white;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:0.3s;

}

.beneficio-card:hover{

    transform:translateY(-8px);

}

.beneficio-icono{

    font-size:3rem;

    margin-bottom:20px;

}

.beneficio-card h3{

    margin-bottom:15px;

    color:var(--rosa);

}

/* ========================================= */
/* PRODUCTOS */
/* ========================================= */

.cards-productos{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.producto-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:0.3s;

}

.producto-card:hover{

    transform:translateY(-8px);

}

.producto-card img{

    width:100%;

    height:280px;

    object-fit:cover;

}

.producto-info{

    padding:25px;

}

.producto-info h3{

    color:var(--rosa);

    margin-bottom:15px;

}

.precio{

    display:inline-block;

    margin-top:18px;

    background:var(--rosa);

    color:white;

    padding:8px 18px;

    border-radius:30px;

    font-weight:600;

}

/* ========================================= */
/* VIDEOS */
/* ========================================= */

.videos-section{

    background:var(--beige);

}

.videos-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.video-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.video-card video{

    width:100%;

    height:400px;

    object-fit:cover;

}

.video-card h3{

    padding:20px;

    color:var(--rosa);

}

/* ========================================= */
/* CONTACTO */
/* ========================================= */

.contacto-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

}

.contacto-info{

    background:var(--beige);

    padding:40px;

    border-radius:25px;

}

.contacto-info h3{

    color:var(--rosa);

    margin-bottom:20px;

}

.contacto-item{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:20px;

}

.contacto-item i{

    color:var(--rosa);

    font-size:1.3rem;

}

/* ========================================= */
/* FORMULARIO */
/* ========================================= */

.formulario{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.formulario input,
.formulario textarea{

    padding:18px;

    border:none;

    border-radius:15px;

    background:white;

    box-shadow:var(--shadow);

    font-size:1rem;

    font-family:'Poppins', sans-serif;

}

.formulario textarea{

    height:180px;

    resize:none;

}

.formulario button{

    background:var(--rosa);

    color:white;

    border:none;

    padding:16px;

    border-radius:50px;

    cursor:pointer;

    font-size:1rem;

    font-weight:600;

    transition:0.3s;

}

.formulario button:hover{

    background:var(--rosa-hover);

}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.footer{

    background:var(--marron);

    color:white;

    padding-top:70px;

}

.footer-contenido{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

    padding:0 8% 50px;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.footer-links a{

    color:white;

}

.footer-redes{

    display:flex;

    gap:20px;

    margin-top:20px;

}

.footer-redes a{

    width:45px;

    height:45px;

    background:rgba(255,255,255,0.1);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:1.2rem;

    transition:0.3s;

}

.footer-redes a:hover{

    background:var(--rosa);

}

.footer-copy{

    text-align:center;

    padding:25px;

    border-top:1px solid rgba(255,255,255,0.1);

}

/* ========================================= */
/* RESPONSIVE TABLET */
/* ========================================= */

@media(max-width:992px){

    .header{

        padding:15px 5%;

        flex-direction:column;

        gap:15px;

    }

    .logo img{

        width:140px;

    }

    .navbar{

        display:flex;

        flex-wrap:wrap;

        justify-content:center;

        gap:10px;

        padding:10px 15px;

    }

    .navbar a{

        padding:8px 14px;

        font-size:0.95rem;

    }

    .hero{

        padding-top:220px;

    }

    .hero-content h1{

        font-size:5rem;

    }

    .hero-content h2{

        font-size:2.2rem;

    }

    .hero-content p{

        font-size:1rem;

    }

    .nosotros-container,
    .contacto-container{

        grid-template-columns:1fr;

        gap:40px;

    }

    .nosotros-img{

        max-width:500px;

        margin:auto;

    }

    .video-card video{

        height:320px;

    }

}

/* ========================================= */
/* RESPONSIVE MOVIL */
/* ========================================= */

@media(max-width:600px){

    section{

        padding:70px 5%;

    }

    .header{

        padding:12px 5%;

    }

    .logo img{

        width:120px;

    }

    .navbar{

        width:100%;

        border-radius:20px;

        gap:8px;

        padding:10px;

    }

    .navbar a{

        font-size:0.85rem;

        padding:8px 10px;

    }

    .hero{

        min-height:100vh;

        padding:220px 5% 80px;

    }

    .hero-content h1{

        font-size:3.5rem;

    }

    .hero-content h2{

        font-size:1.6rem;

    }

    .hero-content p{

        font-size:0.95rem;

    }

    .hero-line{

        width:150px;

    }

    .btn-principal{

        padding:15px 28px;

        font-size:1rem;

    }

    .titulo-seccion h2{

        font-size:2rem;

    }

    .cards-productos{

        grid-template-columns:1fr;

    }

    .producto-card img{

        height:250px;

    }

    .videos-grid{

        grid-template-columns:1fr;

    }

    .video-card video{

        height:260px;

    }

    .beneficios-grid{

        grid-template-columns:1fr;

    }

    .contacto-info{

        padding:30px 20px;

    }

    .formulario input,
    .formulario textarea{

        padding:15px;

    }

    .footer-contenido{

        text-align:center;

    }

    .footer-redes{

        justify-content:center;

    }

}

/* ========================================= */
/* EXTRA SMALL DEVICES */
/* ========================================= */

@media(max-width:400px){

    .hero-content h1{

        font-size:3rem;

    }

    .hero-content h2{

        font-size:1.3rem;

    }

    .navbar{

        gap:5px;

    }

    .navbar a{

        font-size:0.75rem;

        padding:6px 8px;

    }

    .btn-principal{

        width:100%;

    }

}
/* ========================================= */
/* MENU HAMBURGUESA */
/* ========================================= */

.menu-toggle{

    display:none;

    font-size:2rem;

    color:var(--rosa);

    cursor:pointer;

}

/* ========================================= */
/* RESPONSIVE MENU */
/* ========================================= */

@media(max-width:768px){

    .header{

        flex-direction:row;

        justify-content:space-between;

        align-items:center;

    }

    .menu-toggle{

        display:block;

    }

    .navbar{

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:white;

        flex-direction:column;

        align-items:center;

        padding:20px 0;

        gap:15px;

        border-radius:0 0 20px 20px;

        box-shadow:0 10px 20px rgba(0,0,0,0.08);

        display:none;
        
        transition:0.3s;

    }

    .navbar.active{

        display:flex;

    }

    .navbar a{

        width:90%;

        text-align:center;

    }

}