/* ==========================
   PALETA
   ========================== */
   :root {
    --rosa: #e4007c;
    --gris: #f4f4f4;
    --negro: #111;
    --blanco: #fff;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--blanco);
    color: var(--negro);
}

.main-container {
     width: 90%; 
     max-width: 1200px;
     margin: 20px auto;  
    padding: 10px;
}

.container { 
    display: flex;
    width: 90%;
    margin: 2rem,2rem;

    }

/* ==========================
   HEADER — FIJO EN SCROLL
   ========================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--blanco);
    border-bottom: 10px solid #ddd;
    z-index: 1000;
    backdrop-filter: blur(6px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    color: var(--rosa);
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}
.nav-menu a {
    text-decoration: none;
    color: var(--negro);
    font-weight: 500;
    transition: 0.3s;
}
.nav-menu a:hover { color: var(--rosa); }

/* BOTÓN HAMBURGUESA (MOBILE) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--negro);
    border-radius: 3px;
}

/* ==========================
   HERO NUEVO
   ========================== */
.hero {
    padding-top: 120px; /* espacio por el header fijo */
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 4rem;
}
.hero-content{
    max-width: 40%;
}
.hero-content h2 {
    font-size: 2.8rem;
    color: var(--rosa);
}
.hero-content p { max-width: 400px; }

.btn-primary {
    background: var(--rosa);
    color: var(--blanco);
    padding: 0.8rem 1.6rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.hero-img {
    flex: 1;
    height: 380px;
    border-radius: 20px;
    background-image: url('https://images.unsplash.com/photo-1504439468489-c8920d796a29');
    background-size: cover;
    background-position: center;
    max-width: 60%;
}

/* ==========================
   RESPONSIVE
   ========================== */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--blanco);
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-left: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }
    .nav-menu.active { display: flex; }
    .hero-content{
        max-width: 100%;
    }
    .hero { flex-direction: column; text-align: center; }
    .hero-img { width: 100%; height: 300px; }
}