/* ============================================================
   STYLES.CSS - CONFIGURACIÓN CENTRALIZADA 1400PX
   ============================================================ */

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html, body { 
    height: 100%; 
}

body {
    background-color: #05070a;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center; 
    min-height: 100vh;
    padding-top: 0;
}

h1, h2, h3, h4  {
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
} 

/* 1. CONTENEDOR GLOBAL 1400PX */
.main-header, 
.aga-universe, 
.main-layout-standard,
.main-footer,
.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Ajuste del Hero: Añadimos margen superior para separarlo del nav */
.hero-container {
    margin-top: 40px; /* Espacio de respiro respecto al menú */
}

/* Estilos de la imagen Hero */
.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 2. LAYOUT DE COLUMNAS (GRID FLEXIBLE) */
.aga-top-layout,
.top-layout-grid {
    display: flex;
    width: 100%;
    gap: 60px; 
    padding: 40px 0;
    align-items: flex-start;
}

/* Sidebar alineado a 30px */
.section-sidebar {
    width: 280px;
    flex-shrink: 0;
    padding-left: 30px; 
}

/* Área de contenido */
.content-stage {
    flex: 1;
    min-width: 0;
}

/* Limpieza de paddings para componentes inyectados */
.short-film-details {
    padding-right: 0 !important;
    background: transparent !important;
}

/* 3. LOGO Y ELEMENTOS DE SECCIÓN (SIDEBAR) */
.section-title-bank {
    font-family: 'Bank Gothic', sans-serif;
    font-size: 2.2rem;
    line-height: 0.9;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.section-logo-solid {
    width: 196px; 
    margin: 20px 0;
}

.section-logo-solid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: brightness(1.1);
}

.sidebar-meta {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* 4. MÓDULO FILM STRIP (NEGATIVO) */
#module-film-strip {
    margin-top: 4px !important;
    padding-top: 0 !important;
}

.full-width-module {
    width: 100%;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 5. FOOTER AJUSTES */
.main-footer {
    margin: 50px auto 20px auto;
}

/* 6. RESPONSIVE */
@media (max-width: 1100px) {
    .top-layout-grid, .aga-top-layout {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    body { 
        padding-top: 0; 
    }
    .aga-top-layout, 
    .top-layout-grid { 
        flex-direction: column; 
        padding: 20px; 
    }
    .section-sidebar { 
        width: 100%; 
        padding-left: 0; 
        margin-bottom: 30px;
    }
    .hero-container {
        margin-top: 20px; /* Reducimos el margen en móviles para aprovechar espacio */
    }
}