/* home.css - Versión mejorada con hero-rediseñado */

:root {
    --color-oscuro: #0a0a0a;
    --color-cinematic: #121212;
    --color-oro: #eeb643;
    --color-oro-oscuro: #a88b3a;
    --color-oro-claro: #e5c982;
    --color-plata: #b0b0b0;
    --color-borde: #333333;
    --color-texto-secundario: #999999;
    
    --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%);
    --sombra-cinematic: 0 10px 40px rgba(0, 0, 0, 0.5);
    --sombra-destacada: 0 20px 60px rgba(201, 169, 89, 0.2);
    
    --transicion-rapida: 0.3s ease;
    --transicion-media: 0.5s ease;
    --transicion-lenta: 0.8s ease;

    --header-bg: var(--color-blanco);
    --color-texto-header: var(--color-oscuro);
}

.home-page {
    background-color: var(--color-oscuro);
    color: var(--color-blanco);
}

/* ============================= */
/* HERO SECTION - REDISEÑADO     */
/* ============================= */
.hero-cinematic {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.hero-backup-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #0a0a0a);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.vimeo-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.vimeo-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    transition: filter 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 3;
    pointer-events: none;
    transition: background 0.6s ease;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    transform: scale(0.75);
}

/* Columna izquierda - Fondo negro con corte diagonal */
.hero-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 50%;
    width: 70%; /* Ancho de la columna */
    background: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 50px 5% 20px 5%;
    box-sizing: border-box;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%); /* Borde más inclinado */
    z-index: 5;
    transition: all 0.65s ease;
}

/* Contenedor interno para logo y texto */
.hero-left-content {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
    transition: transform 0.6s ease;
}

.hero-logo-img {
    height: 170px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    flex-shrink: 0;
    transition: all 0.6s ease;
}

.hero-logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--fuente-titulos);
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.6s ease;
}

.hero-logo-polo {
    color: var(--color-oro);
    /*text-shadow: 0 2px 10px rgba(201, 169, 89, 0.4);*/
    margin-bottom: 0.1em;
}

/* Línea para AUDIO y VISUAL */
.hero-logo-line {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-logo-audio {
    color: var(--color-blanco);
    /*text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);*/
}

.hero-logo-visual {
    color: var(--color-oro);
    /*text-shadow: 0 2px 10px rgba(201, 169, 89, 0.4);*/
}

/* Columna derecha - Texto en dos líneas */
.hero-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0%;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 5%;
    box-sizing: border-box;
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-release {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    font-family: var(--fuente-titulos);
    font-weight: 900;
    font-size: 4rem;
    color: var(--color-blanco);
    letter-spacing: 5px;
    transform: skewX(-8deg);
    text-shadow: 
        0 2px 0 rgba(0,0,0,0.5),
        2px 4px 0 rgba(201, 169, 89, 0.3),
        4px 6px 0 rgba(0,0,0,0.3);
    line-height: 1.2;
    text-align: right;
    background: transparent;
}

.hero-release span {
    display: block;
    white-space: nowrap;
}

/* Botones y scroll */
.hero-buttons-container {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    pointer-events: auto;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-trailer-close {
    position: absolute;
    top: 80px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

.hero-trailer-close:hover {
    background: rgba(238, 182, 67, 0.9);
    color: #111111;
    border-color: #eeb643;
}

.hero-cinematic.trailer-mode .hero-video-overlay {
    background: rgba(0, 0, 0, 0.05);
}

.hero-cinematic.trailer-mode .vimeo-video-wrapper iframe {
    filter: brightness(0.78) contrast(1.08);
}

.hero-cinematic.trailer-mode .hero-right,
.hero-cinematic.trailer-mode .hero-buttons-container {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.hero-cinematic.trailer-mode .hero-left {
    top: 20px;
    left: 20px;
    width: auto;
    bottom: auto;
    background: transparent;
    clip-path: none;
    padding: 0;
}

.header-cinematic.trailer-mode {
    opacity: 0;
}

.hero-cinematic.trailer-mode .hero-left-content {
    transform: scale(0.68) translateX(-600px) translateY(-250px);
    /*transform-origin: top left;*/
}

.hero-cinematic.trailer-mode .hero-logo-img {
    animation: heroLogoSway 3.6s ease-in-out infinite;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.65));
}

.hero-cinematic.trailer-mode .hero-logo-text {
    opacity: 0;
}

.hero-cinematic.trailer-mode .hero-trailer-close {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@keyframes heroLogoSway {
    0%,
    100% {
        transform: rotate(-1.8deg);
    }

    50% {
        transform: rotate(1.8deg);
    }
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cinematic {
    background: var(--gradiente-oro);
    color: var(--color-oscuro);
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-cinematic:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(201, 169, 89, 0.4);
    color: var(--color-oscuro);
}

.btn-outline-cinematic {
    background: transparent;
    color: var(--color-blanco);
    border: 2px solid var(--color-oro);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline-cinematic:hover {
    background: var(--color-oro);
    color: var(--color-oscuro);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(201, 169, 89, 0.4);
}

.hero-scroll-indicator {
    color: var(--color-oro);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    filter: drop-shadow(0 0 10px rgba(201, 169, 89, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ============================= */
/* POPUP DE VIDEO (CORREGIDO) */
/* ============================= */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(171, 174, 12, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    backdrop-filter: blur(10px);
    padding: 20px;
}

.video-popup.active {
    opacity: 1;
    visibility: visible;
}

.video-popup.active .video-popup-content {
    transform: scale(1) translateZ(0);
    opacity: 1;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    transform: scale(0.9) translateZ(-100px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.video-popup-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--color-oro); /* Fondo dorado */
    border: 2px solid var(--color-oscuro);
    border-radius: 50%;
    color: var(--color-oscuro); /* Texto oscuro */
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.close-popup:hover {
    background: var(--color-oro-oscuro);
    transform: scale(1.1);
}

/* Ajustes responsivos para la X */
@media screen and (max-width: 768px) {
    .close-popup {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* ============================= */
/* SECCIONES GENERALES (sin cambios) */
/* ============================= */
.cinematic-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--fuente-titulos);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-blanco);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-oro);
    border-radius: 2px;
}

.section-title-accent {
    color: var(--color-oro);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-texto-secundario);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.6;
}

/* ============================= */
/* SOBRE NOSOTROS - ESTILO MINIMALISTA DORADO */
/* ============================= */
.sobre-nosotros {
    background-color: #eeb643; /* Dorado sólido */
    padding: 120px 0;
    text-align: center;
    border-bottom: none;
}

.sobre-nosotros .section-header {
    margin-bottom: 10px;
}

.sobre-nosotros .section-title {
    color: #000000; /* Título en negro */
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.sobre-nosotros .section-title-accent {
    color: #000000;
}

.sobre-nosotros .section-subtitle {
    color: #333333; /* Gris oscuro */
    font-size: 1.2rem;
    max-width: 700px;
    margin: 10px auto 0;
}

.sobre-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.sobre-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0;
    backdrop-filter: none;
}

.sobre-card p,
.sobre-cita-texto {
    font-family: var(--fuente-titulos, 'Oswald', sans-serif);
    font-size: 2.5rem; /* Grande */
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto;
    max-width: 900px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    /* El efecto de escritura se controla con JS */
}

/* Cursor parpadeante (opcional) */
.typewriter-cursor {
    display: inline-block;
    width: 4px;
    height: 1em;
    background-color: #000;
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .sobre-nosotros {
        padding: 80px 0;
    }
    .sobre-card p,
    .sobre-cita-texto {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .sobre-card p,
    .sobre-cita-texto {
        font-size: 1.6rem;
    }
}

/* ============================= */
/* ÚLTIMO PROYECTO (sin cambios) */
/* ============================= */
.ultimo-proyecto {
    background: var(--gradiente-cinematic);
    border-bottom: 1px solid var(--color-borde);
}

.proyecto-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pelicula-poster {
    position: relative;
}

.poster-container {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--sombra-cinematic);
    transition: transform 0.3s ease;
}

.poster-container:hover {
    transform: scale(1.02);
}

.proyecto-imagen-vertical {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.poster-container:hover .proyecto-imagen-vertical {
    transform: scale(1.05);
}

.poster-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradiente-oro);
    color: var(--color-oscuro);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.proyecto-info {
    padding: 20px 0;
}

.proyecto-header {
    margin-bottom: 30px;
}

.proyecto-titulo {
    font-family: var(--fuente-titulos);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-blanco);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proyecto-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(201, 169, 89, 0.1);
    color: var(--color-oro);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(201, 169, 89, 0.3);
    text-transform: uppercase;
}

.proyecto-descripcion {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-texto-secundario);
    margin-bottom: 40px;
}

.proyecto-datos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.dato-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    border: 1px solid var(--color-borde);
    transition: all 0.3s ease;
}

.dato-item:hover {
    border-color: var(--color-oro);
    transform: translateY(-3px);
}

.dato-item i {
    font-size: 1.5rem;
    color: var(--color-oro);
}

.dato-item div {
    flex: 1;
}

.dato-item strong {
    display: block;
    color: var(--color-blanco);
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.dato-item span {
    display: block;
    color: var(--color-texto-secundario);
    font-size: 0.9rem;
}

.proyecto-acciones {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================= */
/* TESTIMONIOS (sin cambios) */
/* ============================= */
.testimonios {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-bottom: 1px solid var(--color-borde);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-borde);
    border-radius: 5px;
    padding: 40px 30px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-oro);
}

.testimonio-content i {
    font-size: 2rem;
    color: var(--color-oro);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonio-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-texto-secundario);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonio-autor {
    border-top: 1px solid var(--color-borde);
    padding-top: 20px;
}

.testimonio-autor strong {
    display: block;
    color: var(--color-blanco);
    margin-bottom: 5px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.testimonio-autor span {
    color: var(--color-texto-secundario);
    font-size: 0.9rem;
}

/* ============================= */
/* PELÍCULA DESTACADA - CENTRADO MEJORADO */
/* ============================= */
.pelicula-destacada {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.pelicula-destacada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
    pointer-events: none;
    transition: background 0.3s ease;
}

.pelicula-destacada.light-section::before {
    background: rgba(0, 0, 0, 0.55);
}

.pelicula-destacada.dark-section::before {
    background: rgba(0, 0, 0, 0.75);
}

.pelicula-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pelicula-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pelicula-destacada:hover .pelicula-poster img {
    transform: scale(1.05);
}

.pelicula-info {
    position: relative;
    z-index: 3;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;                /* CENTRA EL BLOQUE HORIZONTALMENTE */
    text-align: center;             /* CENTRA TEXTO E HIJOS INLINE */
    padding: 60px 30px;
    color: var(--color-blanco);
    animation: fadeInUp 0.8s ease;
    display: flex;
    flex-direction: column;
    align-items: center;            /* CENTRA LOS HIJOS FLEX EN CRUCE */
    justify-content: center;
}

.pelicula-badge {
    display: inline-block;
    background: var(--gradiente-oro);
    color: var(--color-oscuro);
    padding: 8px 20px;
    border-radius: 5px;
    font-family: var(--fuente-textos);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.pelicula-titulo {
    font-family: var(--fuente-titulos);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-blanco);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.pelicula-sinopsis {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;            /* CENTRA EL PÁRRAFO DENTRO DEL CONTENEDOR */
}

.pelicula-detalles {
    list-style: none;
    margin: 0 auto 40px auto;      /* CENTRA LA LISTA HORIZONTALMENTE */
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;            /* ANTES ERA flex-start, AHORA CENTRA LOS ITEMS */
    width: 100%;
    max-width: 400px;
}

.pelicula-detalles li {
    display: flex;
    align-items: center;
    justify-content: center;        /* CENTRA EL CONTENIDO (ICONO + TEXTO) HORIZONTALMENTE */
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.pelicula-detalles li:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--color-oro);
    transform: translateX(5px);
}

.pelicula-detalles i {
    color: var(--color-oro);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.pelicula-detalles span {
    color: var(--color-blanco);
    font-size: 1rem;
    font-weight: 400;
}

.pelicula-acciones {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;        /* CENTRA LOS BOTONES */
    width: 100%;
}

.pelicula-acciones .btn {
    border-radius: 5px !important;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
/* ============================= */
/* WHATSAPP FLOAT (sin cambios) */
/* ============================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
    font-size: 28px;
}

/* ============================= */
/* ANIMACIONES GENERALES (sin cambios) */
/* ============================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================= */
/* RESPONSIVE - DOS COLUMNAS SIEMPRE */
/* ============================= */

/* Tablets (hasta 1024px) */
@media screen and (max-width: 1024px) {
    .hero-left {
        left: -40px;                /* Menos desplazamiento negativo */
        width: 75%; 
        bottom: 70%;                 /* Un poco más estrecho */
        clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%); /* Inclinación ligeramente reducida */
    }
    
    .hero-right {
        width: 50%;
        bottom: 70%;
    }
    
    .hero-logo-img {
        height: 130px;
    }
    
    .hero-logo-text {
        font-size: 4rem;
    }
    
    .hero-release {
        font-size: 3rem;
    }
}

/* Móviles (hasta 768px) - Ajustes de altura y posición */
@media screen and (max-width: 768px) {
    .hero-cinematic {
        height: 100vh; /* Ocupa toda la pantalla sin scroll vertical */
        min-height: unset;
        overflow: hidden; /* Evita cualquier scroll vertical */
    }
    
    .hero-left {
        left: -20px;
        width: 80%;
        clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
        padding: 60px 5% 15px 5%;
        bottom: 50%; /* Ajuste vertical */
    }
    
    .hero-right {
        width: 55%;
        bottom: 40%;
    }
    
    .hero-logo-img {
        height: 100px;
    }
    
    .hero-logo-text {
        font-size: 1rem;
    }
    
    .hero-logo-line {
        gap: 10px;
    }
    
    .hero-release {
        font-size: 2.2rem;
        letter-spacing: 3px;
        transform: skewX(-6deg);
    }
    
    .hero-release span {
        white-space: nowrap;
    }
    
    /* Botones más arriba para que sean visibles sin scroll */
    .hero-buttons-container {
        bottom: 130px; 
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn-cinematic,
    .btn-outline-cinematic {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-cinematic.trailer-mode .hero-left {
        top: 16px;
        left: 12px;
    }

    .hero-cinematic.trailer-mode .hero-left-content {
        transform: scale(0.52);
    }

    .hero-trailer-close {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* Móviles pequeños (hasta 480px) */
@media screen and (max-width: 480px) {
    .hero-left {
        left: 0;
        width: 120%;
        bottom: 60%;
        clip-path: polygon(0 0, 100% 0, 80% 65%, 0 65%);
        padding: 40px 5% 10px 5%;
    }
    
    .hero-right {
        width: 60%;
        bottom: 50%;
    }
    
    .hero-logo-img {
        height: 120px;
    }
    
    .hero-logo-text {
        margin-left: -15px;
        font-size: 1.7rem;
    }
    
    .hero-logo-line {
        gap: 6px;
    }
    
    .hero-release {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .hero-buttons-container {
        bottom: 13em; 
    }

    .hero-cinematic.trailer-mode .hero-left {
        top: -185px;
        left: -80px;
    }

    .hero-cinematic.trailer-mode .hero-left-content {
        transform: scale(1);
    }
}
/* ========================================= */
/* NUEVOS ESTILOS PARA LA SECCIÓN SOBRE NOSOTROS (TRES BLOQUES) */
/* ========================================= */

/* Contenedor de la cuadrícula */
.sobre-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

/* Tarjetas individuales - Fondo sólido oscuro #0a0a0a */
.sobre-item {
    background: #0a0a0a;              /* Fondo sólido oscuro */
    padding: 30px 25px;
    border-radius: 5px;
    border: 1px solid #333;           /* Borde sutil */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.sobre-item:hover {
    transform: translateY(-8px);
    border-color: var(--color-oro);    /* Borde dorado al hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Títulos de los bloques */
.sobre-item h3 {
    font-family: var(--fuente-titulos);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-oro);           /* Dorado */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--color-oro);  /* Línea dorada */
    padding-bottom: 10px;
}

/* Párrafos de los bloques - Color gris claro #b0b0b0 */
.sobre-item p {
    font-family: var(--fuente-textos);
    font-size: 1rem;
    line-height: 1.7;
    color: #b0b0b0;                    /* Gris claro */
    margin: 0;
    font-weight: 400;
}

/* Ajuste del párrafo principal (sin cambios) */
.sobre-card p,
.sobre-cita-texto {
    font-size: 1.4rem !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    font-weight: 500;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .sobre-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .sobre-item {
        padding: 25px 20px;
    }
    
    .sobre-item h3 {
        font-size: 1.4rem;
    }
    
    .sobre-card p,
    .sobre-cita-texto {
        font-size: 1.2rem !important;
    }
}

@media screen and (max-width: 480px) {
    .sobre-item h3 {
        font-size: 1.3rem;
    }
    
    .sobre-item p {
        font-size: 0.95rem;
    }
}


