/* === ESTILO INSTITUCIONAL CEPEC === */

/* Fondo general */
body {
    background-color: #161853; /* Fondo institucional */
    color: #F7931E; /* Texto principal en naranja CEPEC */
    font-family: Verdana, sans-serif; /* Texto base */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Encabezados */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Títulos */
    color: #c6a664; /* Dorado */
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Párrafos y texto */
p {
    color: #F7931E; /* Texto en naranja CEPEC */
    margin-bottom: 15px;
}

/* Botones */
button, .btn {
    background-color: #c6a664;
    color: #161853;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #F7931E; /* Hover en naranja CEPEC */
    color: #161853;
}

/* Enlaces */
a {
    color: #c6a664;
    text-decoration: none;
}
a:hover {
    color: #F7931E; /* Hover enlaces en naranja CEPEC */
}

/* Bordes institucionales */
.border-institucional {
    border: 2px solid #c6a664;
    border-radius: 5px;
    padding: 15px;
}

/* Espaciado general */
section {
    padding: 40px 20px;
}