:root {
    /* Paleta EquoSiente - Versión Light */
    --gold: #b38e5d;
    --turq: #1a5f6b;
    --turq-light: #e8f2f3;
    --bg-light: #f9fbfb; /* Fondo principal muy claro */
    --white: #ffffff;
    --text-dark: #1a1f36; /* Contraste máximo para lectura */
    --text-muted: #4a5568;
    --header-height: 85px;
    --transition: all 0.3s ease;
    /* Ajustamos la altura base a 120px para dar aire al logo */
    --header-height: 120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* --- Header --- */
.main-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0; 
    width: 100%; 
    z-index: 1000;
    display: flex; 
    align-items: center;
    border-bottom: 1px solid rgba(26, 95, 107, 0.1);
    transition: var(--transition); /* Suaviza cambios si luego haces scroll */
}

.header-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }

/* --- Ajuste del Logo --- */
.logo-img { 
    height: 120px; /* Aumentamos la dimensión de la imagen del logo */
    width: auto; 
    display: block;
    object-fit: contain;
    transition: var(--transition); 
}

/* --- Ajuste del Hero para evitar que el header lo tape --- */
.hero {
    /* Aseguramos que el contenido empiece justo después del header más alto */
    padding-top: calc(var(--header-height) + 60px); 
    padding-bottom: 100px;
}

/* --- Ajuste Responsive --- */
@media (max-width: 768px) {
    :root {
        --header-height: 100px; /* Un poco más bajo en móviles pero aún espacioso */
    }
    .logo-img {
        height: 70px;
    }
}

.nav-menu ul { display: flex; list-style: none; gap: 2rem; }
.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.nav-menu a:hover { color: var(--turq); }

/* --- Buttons --- */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary {
    background: var(--turq);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 142, 93, 0.3);
}

.btn-outline {
    border: 2px solid var(--turq);
    color: var(--turq);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--turq-light);
}


.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 100%;
    background: radial-gradient(circle at center, rgba(26, 95, 107, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    line-height: 1.1;
    margin: 1.5rem 0;
    color: var(--text-dark);
}

.hero-content h1 span { color: var(--turq); }

.hero-content p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2.5rem; }

.badge {
    color: var(--gold);
    background: rgba(179, 142, 93, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* --- Servicios --- */
.services { padding: 100px 0; background: var(--white); }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--text-dark); }
.underline { width: 50px; height: 3px; background: var(--gold); margin: 15px auto; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.service-card {
    padding: 3rem;
    background: var(--bg-light);
    border: 1px solid rgba(26, 95, 107, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.card-icon { font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-bottom: 1.5rem; }
.service-card h3 { color: var(--turq); margin-bottom: 1rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { margin: 0 auto 2rem; }
    .desktop-only { display: none; }
    .menu-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
    .menu-toggle span { width: 25px; height: 3px; background: var(--turq); }
}
/* --- FOOTER ESTILO CLARO --- */
.main-footer {
    background-color: var(--white);
    padding: 80px 0 0;
    border-top: 1px solid rgba(26, 95, 107, 0.1);
    color: var(--text-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 60px;
}

.footer-logo {
    height: 80px; /* Un poco más pequeño que el header */
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4, 
.footer-contact h4 {
    font-family: 'Playfair Display', serif;
    color: var(--turq);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    background-color: var(--bg-light);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(179, 142, 93, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-brand p {
        margin: 0 auto 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}