/* --- Estilos Generales --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6; /* Restaurado a un gris claro */
    color: #333;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* --- LOGO SEMITRANSPARENTE DE FONDO RESTAURADO --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../images/logo.png'); /* Ruta relativa desde la carpeta css a la de images */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain; /* Ajusta el logo al tamaño de la pantalla sin cortarlo */
    opacity: 0.08; /* Transparencia sutil */
    z-index: -1;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}
h1, h2 {
    color: #1a237e; /* Azul oscuro más profundo para títulos */
    font-weight: 700;
}
h3 {
    color: #2c3e50; /* Gris azulado para subtítulos de sección */
    font-weight: 600;
}

/* --- Cabecera y Navegación --- */
header {
    background: #ffffff; /* Fondo blanco para la cabecera */
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0; /* Borde más sutil */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Sombra ligera para cabecera flotante */
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a237e;
}
header .logo img {
    height: 150px; /* --- CAMBIO: Logo a 150px --- */
    margin-right: 15px;
}
header .logo h1 {
    margin: 0;
    font-size: 2rem;
    color: #1a237e;
}
header nav a {
    color: #555; /* Color de texto de navegación más neutro */
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500; /* Peso de fuente más ligero */
    transition: color 0.3s ease-in-out;
}
header nav a:hover {
    color: #e63946; /* Rojo de urgencias para el hover */
}

/* --- Secciones --- */
section {
    padding: 80px 0; /* Mayor padding para más espacio */
    border-bottom: 1px solid #eceff1; /* Borde más sutil */
}
section:last-of-type {
    border-bottom: none;
}
.section-title {
    text-align: center;
    margin-bottom: 20px; /* Reducido para acercar subtítulo */
    font-size: 2.8rem;
    line-height: 1.2;
}
.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #616161;
    max-width: 800px;
    margin: 0 auto 60px auto; /* Espacio para el subtítulo */
}

/* --- Presentación (Hero) --- */
#presentacion {
    padding-top: 100px; /* Más espacio arriba para la sección Hero */
    padding-bottom: 100px;
    text-align: center;
    background-color: #ffffff;
}
#presentacion .section-title {
    font-size: 3.2rem; /* Título Hero más grande */
    margin-bottom: 20px;
}
#presentacion .section-subtitle {
    font-size: 1.4rem; /* Subtítulo Hero más grande */
    margin-bottom: 40px;
    max-width: 900px;
}
.hero-image-container { /* Nuevo contenedor para la imagen principal */
    max-width: 700px;
    margin: 60px auto 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden; /* Asegura que la imagen no se desborde del border-radius */
}
#presentacion .feature-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0; /* Ya no necesita border-radius aquí */
    box-shadow: none; /* Ni sombra aquí */
}

/* --- Descargas --- */
#descargas .recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; /* Más espacio entre tarjetas */
}
.recurso-card {
    background: #fff;
    padding: 30px; /* Mayor padding */
    border-radius: 10px; /* Bordes más redondeados */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* Sombra más pronunciada */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición para hover */
}
.recurso-card:hover {
    transform: translateY(-5px); /* Efecto de levitar al pasar el ratón */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.recurso-card h3 {
    color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.recurso-card p {
    color: #555;
    font-size: 1.05rem;
}
.recurso-card img {
    width: 100%;
    max-width: 150px; /* Iconos un poco más pequeños para una estética más limpia */
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
}
.btn {
    display: inline-block;
    background: #e63946; /* Rojo principal para botones */
    color: #fff;
    padding: 14px 30px; /* Mayor padding en botones */
    text-decoration: none;
    border-radius: 6px; /* Bordes más redondeados */
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: background 0.3s ease-in-out, transform 0.2s ease;
    border: none; /* Eliminar borde por defecto de botón */
    cursor: pointer;
}
.btn:hover {
    background: #d62828; /* Tono más oscuro al pasar el ratón */
    transform: translateY(-2px);
}

/* --- Contacto --- */
#contacto form {
    max-width: 650px; /* Formulario un poco más ancho */
    margin: auto;
    background: #fff;
    padding: 40px; /* Más padding */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* Sombra consistente */
}
#contacto .form-group {
    margin-bottom: 25px; /* Más espacio entre campos */
}
#contacto label {
    display: block;
    margin-bottom: 8px; /* Más espacio */
    font-weight: 600;
    color: #444;
    font-size: 1.05rem;
}
#contacto input, #contacto textarea {
    width: 100%;
    padding: 12px; /* Mayor padding */
    border: 1px solid #cfd8dc; /* Borde más suave */
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
#contacto input:focus, #contacto textarea:focus {
    border-color: #0d47a1; /* Borde azul al enfocar */
    outline: none;
}
#contacto button {
    width: 100%;
    margin-top: 15px; /* Ajuste para el botón */
}
#formMessage {
    font-size: 1.1rem;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
}
#formMessage.success {
    background-color: #e8f5e9; /* Fondo verde claro para éxito */
    color: #2e7d32; /* Texto verde oscuro */
}
#formMessage.error {
    background-color: #ffebee; /* Fondo rojo claro para error */
    color: #c62828; /* Texto rojo oscuro */
}


/* --- Footer --- */
footer {
    background: #263238; /* Gris oscuro para el footer */
    color: #cfd8dc; /* Texto gris claro */
    text-align: center;
    padding: 30px 0;
    font-size: 0.95rem;
}

/* --- Responsive --- */
@media(max-width: 992px) {
    #presentacion .section-title { font-size: 2.5rem; }
    #presentacion .section-subtitle { font-size: 1.2rem; }
    .section-title { font-size: 2.2rem; }
    .section-subtitle { font-size: 1.1rem; }
    #presentacion .content { grid-template-columns: 1fr; } /* Stack en móvil */
    .hero-image-container { margin-top: 40px; }
}

@media(max-width: 768px) {
    header .container { flex-direction: column; text-align: center; }
    header .logo { margin-bottom: 15px; justify-content: center; }
    header nav { margin-top: 15px; display: flex; flex-wrap: wrap; justify-content: center; }
    header nav a { margin: 5px 10px; }
    section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 40px; }
    #presentacion .section-title { font-size: 2.2rem; }
    #presentacion .section-subtitle { font-size: 1.1rem; }
    .recurso-card { padding: 25px; }
    header .logo img { height: 100px; } /* Ajuste responsive para el logo en móvil */
}

@media(max-width: 480px) {
    header .logo img { height: 80px; } /* Ajuste más pequeño para el logo en pantallas muy pequeñas */
    header .logo h1 { font-size: 1.8rem; }
    #presentacion .section-title { font-size: 1.9rem; }
    #presentacion .section-subtitle { font-size: 1rem; }
    .btn { padding: 12px 25px; font-size: 1rem; }
}

/* --- Nuevos Estilos para Novedades (news/) --- */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Asegura que todas las tarjetas tengan la misma altura */
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-card-image {
    width: 100%;
    height: 220px; /* Altura fija para la imagen */
    object-fit: cover; /* Recorta la imagen para cubrir el área */
    display: block;
}

.news-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Permite que el contenido ocupe el espacio restante */
}

.news-card-content h3 {
    font-size: 1.8em;
    color: #0d47a1; /* Azul corporativo para títulos */
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-card-meta {
    font-size: 0.9em;
    color: #757575;
    margin-bottom: 15px;
}

.news-card-excerpt {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Permite que el extracto ocupe espacio si es más largo */
}

.news-card .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #e63946; /* Rojo para call to action */
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
    border: none;
    align-self: flex-start; /* Alinea el botón al inicio si hay espacio extra */
}

.news-card .btn:hover {
    background-color: #c9323f; /* Rojo más oscuro al pasar el ratón */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 57, 70, 0.4);
}

/* Estilos para la vista de noticia individual */
.single-news-header {
    text-align: center;
    margin-bottom: 50px;
}

.single-news-header h1 {
    font-size: 3em;
    color: #0d47a1;
    margin-top: 0;
    margin-bottom: 15px;
}

.single-news-meta {
    font-size: 1em;
    color: #757575;
    margin-bottom: 20px;
}

.single-news-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.single-news-content {
    font-size: 1.15em;
    line-height: 1.9;
    color: #333;
    text-align: justify;
}

.single-news-content p {
    margin-bottom: 1em;
}

.single-news-content img { /* Estilos para imágenes dentro del contenido de TinyMCE */
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block; /* Centra la imagen */
    margin-left: auto;
    margin-right: auto;
}

.single-news-content a {
    color: #e63946;
    text-decoration: underline;
}

.single-news-content blockquote {
    border-left: 5px solid #0d47a1;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.attachment-section {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
    text-align: center;
}

.attachment-section p {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.btn-back-to-news {
    display: inline-block;
    margin-top: 60px;
    color: #0d47a1;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.2s ease;
}

.btn-back-to-news:hover {
    color: #e63946;
}

/* Responsividad básica */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr; /* Una columna en pantallas pequeñas */
    }
    .single-news-header h1 {
        font-size: 2em;
    }
    .single-news-content {
        font-size: 1em;
    }
}

/* --- Estilos para tarjetas de Recursos en Dashboard --- */

.dashboard-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-dashboard-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.resource-dashboard-card-image {
    width: 100%;
    height: 180px; /* Altura fija */
    object-fit: cover;
    display: block;
}

.resource-dashboard-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.resource-dashboard-card-content h3 {
    font-size: 1.5em;
    color: #0d47a1;
    margin-top: 0;
    margin-bottom: 10px;
}

.resource-dashboard-card-content p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.resource-dashboard-card-content .resource-meta {
    font-size: 0.85em;
    color: #757575;
    margin-bottom: 15px;
}

.resource-dashboard-card-content .btn {
    align-self: flex-start;
    padding: 10px 20px;
    background-color: #e63946; /* Rojo para el botón de acción */
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 3px 8px rgba(230, 57, 70, 0.2);
    border: none;
}

.resource-dashboard-card-content .btn:hover {
    background-color: #c9323f;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(230, 57, 70, 0.3);
}

@media (max-width: 768px) {
    .dashboard-resources-grid {
        grid-template-columns: 1fr;
    }
}