* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --verde-petroleo: #384e54;
    --salmon: #f2a685;
    --blanco: #ffffff;
    --beige: #fcf8f5;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--verde-petroleo);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 55px;
    width: auto;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li { margin-left: 20px; }

.menu a {
    text-decoration: none;
    color: var(--verde-petroleo);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-top: 3px solid var(--salmon);
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
    padding: 12px;
    display: block;
    text-transform: none;
    border-bottom: 1px solid #eee;
}

/* Imagen Principal - RECUERDA EL NOMBRE EXACTO */
.hero {
    height: 85vh;
    /* Usamos %20 para representar el espacio en "Encabezado horizontal.jpg" */
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)), 
                url('Encabezado%20horizontal.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end; 
    justify-content: center;
    text-align: center;
    padding-bottom: 80px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.6);
}

.hero-content p { color: white; margin-bottom: 20px; text-shadow: 1px 1px 5px rgba(0,0,0,0.5); }

.boton-salmon {
    background: var(--salmon);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}

/* Sello */
.presentacion {
    padding: 80px 20px;
    text-align: center;
    background: var(--beige);
}

.sello-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}/* Estilos para las páginas internas */
.contenedor-info {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.titulo-pagina {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--verde-petroleo);
    margin-bottom: 30px;
}

.texto-contenido {
    text-align: left; /* El texto largo es mejor leerlo alineado a la izquierda */
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.texto-contenido p {
    margin-bottom: 20px;
}

.sello-decorativo {
    height: 100px;
    margin-top: 50px;
    opacity: 0.7;
}