/* RESET Y BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #1a1a1a; /* Fondo oscuro */
    color: #e0e0e0; /* Texto claro */
    line-height: 1.6;
}

a { color: #ac2e20; text-decoration: none; transition: 0.3s; }
a:hover { color: #fff; text-decoration: underline; }

/* CABECERA HERO */
.hero {
    background: url('./images/cordura-header.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin: 0;
}

/* ESTRUCTURA PRINCIPAL */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* BARRA LATERAL (FACT SHEET) */
.sidebar {
    flex: 1;
    min-width: 250px;
    border-right: 1px solid #333;
    padding-right: 20px;
}

.sidebar h2 {
    font-size: 1.2rem;
    color: #fff;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 0;
}

.sidebar p { margin-bottom: 20px; font-size: 0.95rem; }
.sidebar strong { color: #fff; display: block; margin-bottom: 5px; }

/* CONTENIDO PRINCIPAL */
.main-content {
    flex: 3;
    min-width: 300px;
}

section { margin-bottom: 50px; }

h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

p { margin-bottom: 15px; color: #ccc; }
li { margin-bottom: 10px; color: #ccc; margin-left: 20px; }

/* MEDIA GRIDS */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.2s;
}

.image-grid img:hover { transform: scale(1.02); }

.logo-grid {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #2a2a2a;
    padding: 20px;
    border-radius: 4px;
}

.logo-grid img { max-width: 100%; height: auto; }

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #444;
    color: white;
    border-radius: 4px;
    margin-top: 10px;
}
.download-btn:hover { background: #555; text-decoration: none; }

/* FOOTER */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.8rem;
}

/* RESPONSIVE (Móvil) */
@media (max-width: 768px) {
    .container { flex-direction: column; }
    .sidebar { border-right: none; border-bottom: 1px solid #333; padding-bottom: 30px; }
    .hero h1 { font-size: 2rem; }
}

/* ESTILO ESPECÍFICO PARA EL HOOK (Estilo Mimesis) */
.press-hook {
    border-left: 4px solid #ac2e20;
    text-align: left; /* Centra todo el contenido */
    padding: 20px 0;    /* Dale aire por arriba y abajo */
    border-bottom: none; /* Quitamos la línea de abajo para que luzca limpio */
    font-style: italic;
}

.press-hook h2 {
    font-size: 2.8rem;      /* Mucho más grande */
    font-weight: 800;       /* Muy negrita */
    line-height: 1.1;       /* Espaciado de línea apretado para impacto */
    color: #fff;
    margin-bottom: 20px;
    border-bottom: none;    /* Quita la línea que tienen los otros h2 */
    text-transform: none;   /* Mantener mayúsculas/minúsculas naturales */
    letter-spacing: -1px;   /* Un toque moderno */
}

.press-hook p {
    padding-left: 15px;
    font-size: 1.4rem;      /* El subtítulo también crece */
    color: #ac2e20;         /* Usamos el color acento naranja para resaltar */
    max-width: 800px;       /* Evita que el texto sea demasiado ancho */
    margin: 0 auto;         /* Centra el bloque de texto */
    opacity: 0.9;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .press-hook h2 {
        font-size: 1.8rem;
    }
    .press-hook p {
        font-size: 1.1rem;
    }
}

/* CONTENEDOR DE LOGOS */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: #111; /* Un fondo un poco más oscuro que el body para resaltar */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
    align-items: center;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-item img {
    max-width: 100%;
    height: 120px;       /* Altura fija para que todos los logos se alineen */
    object-fit: contain; /* Esto evita que el logo se estire o aplaste */
    transition: transform 0.3s ease;
}

.logo-item img:hover {
    transform: scale(1.05);
}

.logo-item span {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contenedor principal del menú */
.lang-menu {
    position: absolute;
    top: 30px;
    right: 40px;
    display: inline-block;
    z-index: 1000;
    font-family: 'Segoe UI', sans-serif;
}

/* El botón que se ve siempre */
.lang-current {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Efecto cristal moderno */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.lang-menu:hover .lang-current {
    background: rgba(255, 255, 255, 0.2);
}

/* El panel desplegable oculto */
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #111; /* Fondo oscuro sólido para legibilidad */
    border: 1px solid #333;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Mostrar al hacer hover */
.lang-menu:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Estilo de los enlaces dentro del desplegable */
.lang-dropdown a {
    color: #bbb;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #222;
}

.lang-dropdown a:last-child {
    border-bottom: none;
}

.lang-dropdown a:hover {
    background: #222;
    color: white;
    padding-left: 25px; /* Pequeña animación de desplazamiento */
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .lang-menu {
        top: 20px;
        right: 20px;
    }
}

#trailer p{
    font-size: 24px;
}