:root {
    --color-muy-oscuro: #190d06;
    --color-cafe-profundo: #46321b;
    --color-dorado-brillante: #cf9f29;
    --color-dorado-suave: #cc9848;
    --color-crema: #e7ddb5;
    --color-arena: #baa273;
}

body { font-family: 'Segoe UI', sans-serif; color: var(--color-muy-oscuro); margin: 0; background-color: #fffaf0; }

/* Header Elegante */
header { background: var(--color-crema); padding: 10px 0; border-bottom: 1px solid var(--color-arena); }
.nav-container { max-width: 1100px; margin: auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo-img { height: 45px; width: auto; } /* Tamaño sutil */

nav ul { list-style: none; display: flex; gap: 30px; margin: 0; }
nav a { text-decoration: none; color: var(--color-muy-oscuro); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }
nav a:hover { color: var(--color-dorado-brillante); }

/* Hero Moderno */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(25,13,6,0.7), rgba(25,13,6,0.7)), url('../img/fotoportada.webp');
    background-size: cover;
    background-position: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--color-crema); text-align: center; padding: 0 20px;
}
.hero h1 { font-size: 3rem; color: var(--color-dorado-claro); margin-bottom: 15px; border-bottom: 2px solid var(--color-dorado-brillante); padding-bottom: 5px; }

/* Secciones */
section { padding: 60px 20px; max-width: 1000px; margin: auto; }
h2 { color: var(--color-muy-oscuro); border-left: 4px solid var(--color-dorado-brillante); padding-left: 15px; }