/* ==================================================
   BLOQUE INICIO 1 - CONTENEDOR GENERAL DE PORTADA
================================================== */
.inicio-contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 40px 20px;
}

/* ==================================================
   BLOQUE INICIO 2 - ENCABEZADO PRINCIPAL
================================================== */
.inicio-encabezado {
    text-align: center;
    margin-bottom: 40px;
}

.inicio-subtitulo {
    font-size: 20px;
    margin: 0;
    opacity: 0.9;
}

/* ==================================================
   BLOQUE INICIO 3 - MENÚ CENTRAL DE ACCESOS
================================================== */
.inicio-menu-central {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.inicio-menu-central .boton-verde,
.inicio-menu-central .menu-dropdown-boton {
    display: block;
    width: fit-content;
    margin: 0;
    padding: 10px 24px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    line-height: 1.2;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
}

/* ==================================================
   BLOQUE INICIO 4 - COLUMNAS PRINCIPALES
================================================== */
.inicio-columnas {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.inicio-columna-principal {
    flex: 2;
    min-width: 320px;
}

.inicio-columna-lateral {
    flex: 1;
    min-width: 300px;
}

/* ==================================================
   BLOQUE INICIO 5 - CAJAS INTERNAS
================================================== */
.inicio-caja {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 14px;
}

/* ==================================================
   BLOQUE INICIO 6 - IMAGEN / PLACEHOLDER INSTITUCIONAL
================================================== */
.inicio-imagen {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.inicio-imagen-placeholder {
    height: 220px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 18px;
    opacity: 0.8;
    text-align: center;
    padding: 20px;
}

/* ==================================================
   BLOQUE INICIO 7 - TEXTO QUIÉNES SOMOS
================================================== */
.inicio-texto {
    line-height: 1.7;
}

/* ==================================================
   BLOQUE INICIO 8 - LISTADO DE NOTICIAS
================================================== */
.noticia-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.noticia-item:last-child {
    margin-bottom: 0;
}

.noticia-titulo {
    margin: 0 0 8px 0;
    text-align: left;
}

.noticia-titulo a {
    color: inherit;
    text-decoration: none;
}

.noticia-titulo a:hover {
    text-decoration: underline;
}

.noticia-fecha {
    font-size: 14px;
    opacity: 0.7;
    margin: 0 0 10px 0;
}

.noticia-resumen {
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.noticias-boton-final {
    margin-top: 20px;
    text-align: center;
}

.noticia-item .boton-verde {
    margin: 12px auto 0;
    font-size: 12px;
    padding: 6px 16px;
}

/* ==================================================
   BLOQUE INICIO 9 - RESPONSIVE
================================================== */
@media (max-width: 768px) {
    .inicio-contenedor {
        padding: 10px 10px 30px 10px;
    }

    .inicio-subtitulo {
        font-size: 18px;
    }

    .inicio-caja {
        padding: 20px;
    }

    .inicio-menu-central {
        flex-direction: column;
        align-items: stretch;
    }

    .inicio-menu-central .boton-verde,
    .inicio-menu-central .menu-dropdown-boton {
        width: 100%;
        text-align: center;
    }

    .inicio-menu-central .menu-dropdown {
        width: 100%;
    }

    .inicio-menu-central .menu-dropdown-listado {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        margin-top: 10px;
    }

    .inicio-menu-central .menu-dropdown-listado a {
        text-align: center;
    }
}