/* --- ESTILO DAALÚ - INSPIRADO EN BROCHURE --- */

:root {
  --azul-daalu: #2c3e50; /* Azul oscuro del fondo */
  --dorado-daalu: #d4a044; /* Ocre de los acentos */
  --gris-suave: #f4f4f4;
}

/* 1. Fondo General y Fuentes */
body {
    background-color: white;
    font-family: 'Montserrat', sans-serif; /* Tipografía limpia y moderna */
    color: #333;
}

/* 2. Encabezados con los colores del brochure */
h1, h2 {
    color: var(--azul-daalu);
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 3px solid var(--dorado-daalu);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 25px;
}

/* 3. Estilo para los ítems de "Metodología" o "Impacto" */
ul li {
    list-style: none;
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
}

ul li::before {
    content: "•";
    color: var(--dorado-daalu); /* El punto dorado del brochure */
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* 4. Botones de contacto */
.btn-primary, .button, button {
    background-color: var(--azul-daalu) !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 15px 30px !important;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: var(--dorado-daalu) !important;
    transform: scale(1.05);
}

/* 5. Pie de página (Footer) */
footer {
    background-color: var(--azul-daalu);
    color: white;
    padding: 40px 0;
    text-align: center;
}