*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#F2ECE6;
    color:#2B2B2B;
    padding-top:80px;
}

/* NAVBAR */
.navbar{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 60px;
    background:rgba(242,236,230,0.9);
    backdrop-filter: blur(10px);
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    z-index:1000;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:80px;
}

.logo-text h2{
    font-size:13px;
    color:#6B6B6B;
}

.logo-text span{
    color:#5C4033;
    font-size:20px;
    font-weight:bold;
}

/* NAV */
nav ul{
    display:flex;
    gap:15px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:#2B2B2B;
    position:relative;
    transition:0.3s;
}

nav a::after{
    content:"";
    position:absolute;
    bottom:-5px;
    left:0;
    width:0;
    height:2px;
    background:#8B5E3C;
    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}

nav a:hover{
    color:#8B5E3C;
}

/* BOTON WHATS */
.whatsapp-btn{
    background:#8B5E3C;
    color:white;
    padding:10px 10px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.whatsapp-btn:hover{
    background:#5C4033;
    transform:translateY(-2px);
}

/* HERO */
.hero{
    display:flex;
    min-height:100vh;
}

/* TEXTO */
.hero-left{
    width:40%;
    padding:50px 60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:15px;
}

.hero-left h1{
    font-size:60px;
    line-height:1.05;
}

.hero-left span{
    color:#8B5E3C;
}

.hero-left p{
    color:#6B6B6B;
}

/* FEATURES */
.features{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.features div{
    border:1px solid #A67C52;
    padding:8px 14px;
    border-radius:8px;
    font-size:13px;
    transition:0.3s;
}

.features div:hover{
    background:#8B5E3C;
    color:white;
}

/* BOTONES */
.buttons{
    display:flex;
    gap:15px;
    margin-top:10px;
}

.btn{
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.red,
.outline{
    background:#8B5E3C;
    color:white;
}

.red:hover,
.outline:hover{
    background:#5C4033;
    transform:translateY(-3px);
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* IMAGEN */
.hero-right{
    width:60%;
    position:relative;
}

.hero-right img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* DEGRADADO */
.hero-right::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to left, transparent, #F2ECE6);
}

/* ================= RESPONSIVE ================= */

@media(max-width:1000px){

    .hero{
        flex-direction:column;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-right img{
        height:400px;
    }
}

@media(max-width:768px){

    /* 🔥 CLAVE: espacio suficiente para navbar */
    body{
        padding-top:180px;
    }

    .navbar{
        padding:10px 15px;
        flex-direction:column;
        gap:5px;
    }

    nav ul{
        gap:10px;
        flex-wrap:wrap;
        justify-content:center;
        font-size:14px;
    }

    .logo img{
        width:50px;
    }

    .whatsapp-btn{
        padding:6px 12px;
        font-size:13px;
    }

    .hero-left{
        padding:30px 20px;
        text-align:center;
    }

    .hero-left h1{
        font-size:26px;
    }

    .hero-left p{
        font-size:14px;
    }

    .features{
        justify-content:center;
    }

    .buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-right img{
        height:300px;
    }
}
