/* -------------------------------------------------------
   ESTILOS PARA PÁGINAS DE EMPRESA
   (Institucional / Nuestra Historia)
   Archivo estructurado para evitar errores de carga
------------------------------------------------------- */

/* ====== BANNER SUPERIOR ====== */
.empresa-banner {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.empresa-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.empresa-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}

/* ====== TÍTULO DEL BANNER ====== */
.empresa-banner-title {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: 42px;
    font-weight: 800;
    color: #000 !important;        /* ⭐ Texto negro */
    text-shadow: none !important;  /* ⭐ Sin sombra */
    background: rgba(255,255,255,0.65); /* ⭐ Fondo claro para máxima visibilidad */
    padding: 10px 18px;
    border-radius: 8px;
}

/* ====== CONTENIDO ====== */
.empresa-contenido {
    padding: 40px 0;
    max-width: 900px;
}

.empresa-contenido p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.section-title,
.subsection-title {
    color: #b30000;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .empresa-banner {
        height: 240px;
    }

    .empresa-banner-title {
        font-size: 28px;
        left: 20px;
        bottom: 20px;
        padding: 8px 14px;
    }

    .empresa-contenido p {
        font-size: 16px;
    }
}