/* Variables de colores y tipografía */
:root {
    --color-blanco: #ffffff;
    --color-purpura: #4a0072;
    --color-purpura-oscuro: #4a0072;
    --color-purpura-claro: #8a2be2;
    --color-negro: #000000;
    --color-dorado: #d9ad26;
    --color-dorado-claro: #f0d87e;
    --color-dorado-oscuro: #b8941f;
    --color-gris: #333333;
    --color-gris-medio: #666666;
    --color-gris-claro: #1a1a1a;
    --color-gris-border: #444444;
    
    /* Nuevos colores cinematográficos */
    --color-oscuro: #0a0a0a;
    --color-cinematic: #121212;
    --color-oro: #c9a959;
    --color-oro-oscuro: #a88b3a;
    --color-oro-claro: #e5c982;
    --color-plata: #b0b0b0;
    --color-borde: #333333;
    --color-texto-secundario: #999999;
    
    /* Tipografías */
    --fuente-titulos: 'Oswald', sans-serif;
    --fuente-textos: 'Roboto Condensed', sans-serif;
    
    /* Sombras */
    --sombra-suave: 0 5px 15px rgba(0, 0, 0, 0.3);
    --sombra-media: 0 10px 30px rgba(0, 0, 0, 0.4);
    --sombra-fuerte: 0 15px 40px rgba(0, 0, 0, 0.5);
    
    /* Nuevas sombras */
    --sombra-cinematic: 0 10px 40px rgba(0, 0, 0, 0.5);
    --sombra-destacada: 0 20px 60px rgba(201, 169, 89, 0.2);
    
    /* Transiciones */
    --transicion-rapida: 0.3s ease;
    --transicion-media: 0.5s ease;
    --transicion-lenta: 0.8s ease;
    
    /* Gradientes */
    --gradiente-cinematic: linear-gradient(135deg, var(--color-oscuro) 0%, var(--color-cinematic) 100%);
    --gradiente-oro: linear-gradient(135deg, var(--color-oro) 0%, var(--color-oro-oscuro) 100%);
}

/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--fuente-textos);
    color: var(--color-blanco);
    line-height: 1.6;
    background-color: var(--color-negro);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fuente-titulos);
    font-weight: 600;
    color: var(--color-blanco);
    letter-spacing: 0.5px;
    text-transform: uppercase; /* AGREGADO: Títulos en mayúsculas */
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transicion-rapida);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden;
}

section {
    padding: 100px 0;
    overflow-x: hidden;
    width: 100%;
}

.section-title-center {
    text-align: center;
    text-transform: uppercase; /* AGREGADO: Títulos de sección en mayúsculas */
}

/* AGREGADO: Estilo específico para títulos de sección */
.section-title-center,
.sobre-text h3,
.proyecto-info h3,
.sinopsis-text h3,
.elenco h2,
.por-que-invertir h2,
.oportunidades h2,
.formulario-inversion h2,
.estrenos h2,
.info-text h2,
.info-contacto h2,
.oportunidades-text h3,
.oportunidades-beneficios h3,
.formulario-info h3 {
    text-transform: uppercase;
}