/* ==========================================================================
   1. CONFIGURACIÓN GENERAL Y TIPOGRAFÍA (INTER)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #F9FAFB; /* Fondo grisáceo claro exacto */
    color: #111111;
    font-family: 'Inter', sans-serif;
}

/* Contenedor global del sitio (Mantiene el ancho para Header y Footer) */
.container-custom {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ENVOLTORIO EXCLUSIVO PARA EL FORMULARIO (Evita romper el resto de la web) */
.form-layout-wrapper {
    max-width: 620px; /* Tamaño ideal y compacto para el formulario y la cajita gris */
    margin: 0 auto;
    width: 100%;
}

/* ==========================================================================
   2. HEADER / MENÚ DE NAVEGACIÓN (FONDO NEGRO)
   ========================================================================= */
.site-header {
    background-color: #0A0A0A; /* Negro puro de la cabecera corporativa */
    padding: 18px 0;
    border-bottom: 1px solid #1F2937;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    max-height: 100px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #E30613; /* Rojo corporativo */
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E30613;
}

/* ==========================================================================
   3. CUERPO PRINCIPAL Y HERO TEXTOS
   ========================================================================== */
.main-content {
    flex: 1;
    padding: 40px 0;
    text-align: center;
}

.page-title {
    font-weight: 800;
    font-size: 2.6rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0 0 10px 0;
}

.page-title span {
    color: #E30613;
}

.page-subtitle {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 35px;
}

/* ==========================================================================
   4. STEPPER / BARRA DE PROGRESO
   ========================================================================== */
.stepper-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 35px auto;
    position: relative;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    width: 120px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #E5E7EB;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
    border: 2px solid #FFFFFF;
}

.step-item.active .step-circle {
    background-color: #E30613;
    color: #FFFFFF;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #9CA3AF;
}

.step-item.active .step-label {
    color: #E30613;
    font-weight: 600;
}

.step-line-progress {
    position: absolute;
    top: 18px;
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: #E5E7EB;
    z-index: 1;
}

.step-line-fill {
    width: 33%;
    height: 100%;
    background-color: #E30613;
}

/* ==========================================================================
   5. TARJETA DEL FORMULARIO BLANCA
   ========================================================================== */
.form-card-container {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #E5E7EB;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
}

/* Grid Interno del Formulario */
.form-grid-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-col-12 { width: 100%; }
.form-col-6 { width: 50%; }

.form-group-field {
    margin-bottom: 15px;
    text-align: left;
}

.field-label {
    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Inputs e Iconos */
.input-icon-rel {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-rel .input-control {
    width: 100%;
    height: 50px;
    padding: 10px 16px 10px 48px;
    font-size: 0.95rem;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    color: #111111;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-icon-rel .input-control:focus {
    outline: none;
    border-color: #E30613;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.08);
}

.input-icon-rel .inner-svg-icon {
    position: absolute;
    left: 16px;
    font-size: 1.25rem;
    color: #E30613;
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 3;
}

.field-help-text {
    font-size: 0.78rem;
    color: #666666;
    margin-top: 6px;
    display: block;
}

/* Checkbox de Privacidad */
.legal-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
    font-size: 0.85rem;
    color: #374151;
    text-align: left;
}

.legal-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #E30613;
    cursor: pointer;
    flex-shrink: 0;
}

.legal-row label {
    cursor: pointer;
    line-height: 1.4;
}

.legal-row a {
    color: #E30613;
    text-decoration: none;
    font-weight: 500;
}

.legal-row a:hover {
    text-decoration: underline;
}

/* Botón de Enviar Continuar Estilizado */
.btn-submit-continue {
    background-color: #E30613;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit-continue:hover {
    background-color: #C20510;
}

/* Errores de Validación Symfony */
.form_error_msg {
    color: #E30613;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
    text-align: left;
    font-weight: 500;
}

/* ==========================================================================
   6. CAJA DE INFORMACIÓN INFERIOR HORIZONTAL CORREGIDA
   ========================================================================== */
.info-footer-box {
    background-color: #FFFFFF !important; /* Fondo blanco o grisáceo muy suave para destacar */
    border: 1px solid #E5E7EB !important;
    border-radius: 8px !important;
    padding: 24px !important;
    margin-top: 25px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
}

/* Texto explicativo con asterisco */
.info-box-note {
    font-size: 11px !important;
    color: #666666 !important;
    line-height: 1.5 !important;
    margin: 0 0 16px 0 !important;
    display: block !important;
}

/* Separador horizontal */
.info-box-divider {
    height: 1px !important;
    background-color: #E5E7EB !important;
    border: none !important;
    margin: 16px 0 !important;
    width: 100% !important;
}

/* Contenedor Flexline en Fila */
.info-box-features {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 20px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Bloques individuales de beneficios */
.info-feature-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;
    flex: 1 !important;
    min-width: 0 !important;
}

/* Iconos de Bootstrap en Rojo */
.info-feature-icon {
    color: #E30613 !important;
    font-size: 1.4rem !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
}

.info-feature-text {
    display: flex !important;
    flex-direction: column !important;
}

.info-feature-text h3 {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.2 !important;
}

.info-feature-text p {
    font-size: 11px !important;
    color: #666666 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

/* ==========================================================================
   7. FOOTER COMPLETO (ANCHO CORRECTO)
   ========================================================================== */
.site-footer {
    background-color: #0A0A0A;
    color: #9CA3AF;
    padding: 60px 0 30px 0;
    font-size: 0.9rem;
    border-top: 1px solid #1F2937;
    margin-top: auto;
}

.footer-main-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand-desc {
    color: #9CA3AF;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 15px 0 20px 0;
    max-width: 320px;
}

.footer-social-links {
    display: flex;
    gap: 14px;
}

.social-icon-btn {
    color: #FFFFFF;
    font-size: 1.2rem;
    transition: color 0.2s;
    text-decoration: none;
}

.social-icon-btn:hover {
    color: #E30613;
}

.footer-col-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-nav-block h4 {
    color: #FFFFFF !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin: 0 0 18px 0;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.88rem;
}

.footer-nav-list a:hover {
    color: #FFFFFF;
}

.footer-bottom-copyright {
    border-top: 1px solid #222222;
    padding-top: 25px;
    text-align: center;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


    /* ==========================================================================
   PANTALLA HOME PRINCIPAL (FONDO PALOMITAS)
   ========================================================================== */

/* Fondo completo de palomitas aplicado al envoltorio del contenido */
.bg-home-popcorn {
    background-image: url('../img/palomitas.png') !important; /* Ajusta la carpeta de tus imágenes si es necesario */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    /*background-attachment: fixed !important;*/
}

/* Caja blanca central de la Home */
.home-card-container {
    background-color: #FFFFFF !important;
    border-radius: 12px !important;
    padding: 45px 35px !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #E5E7EB !important;
    width: 100% !important;
    max-width: 520px; /* Tamaño compacto idéntico a la maqueta */
    margin: 60px auto !important; /* Separación con el header y footer */
    text-align: center !important;
    box-sizing: border-box !important;
}

/* Círculo superior con el icono del ticket/cine */
.home-icon-circle {
    width: 72px;
    height: 72px;
    background-color: rgba(227, 6, 19, 0.08); /* Fondo rojo corporativo muy suave */
    color: #E30613; /* Icono rojo */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
}

/* Textos de la Home */
.home-card-container h2 {
    font-size: 24px;
    font-weight: 800;
    color: #111111;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.home-card-container h2 span {
    color: #E30613;
}

.home-card-container p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 28px 0;
}

/* Botón principal de llamada a la acción */
.btn-home-action {
    background-color: #E30613;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0 32px;
    height: 52px;
    border: none;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
    width: 100%; /* Ocupa el ancho de la cajita */
    box-sizing: border-box;
}

.btn-home-action:hover {
    background-color: #C20510;
    color: #FFFFFF;
}

/* ==========================================================================
   ESTILOS LANDING HOME FIEL A LA MAQUETA (image_f3c2a7.jpg)
   ========================================================================== */

/* Bloque Superior Palomitas */

.hero-landing-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-text-side {
    max-width: 550px;
    text-align: left;
}

/* El gran título en tres líneas */
.landing-main-title {
    font-weight: 900 !important;
    font-size: 3.8rem !important;
    color: #FFFFFF !important; /* Letras blancas */
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
    margin-bottom: 25px !important;
}

.landing-main-title span {
    color: #E30613 !important; /* TU ENTRADA en Rojo corporativo */
}

/* Subtítulo sobre fondo oscuro */
.landing-subtitle {
    font-size: 1.15rem !important;
    color: #E5E7EB !important;
    line-height: 1.6 !important;
    margin-bottom: 35px !important;
}

/* Botón Rojo */
.btn-landing-action {
    background-color: #E30613 !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 0 35px !important;
    height: 54px !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: background-color 0.2s !important;
}

.btn-landing-action:hover {
    background-color: #C20510 !important;
    color: #FFFFFF !important;
}

.secure-badge-landing {
    color: #9CA3AF !important;
    font-size: 0.85rem !important;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Bloque Inferior Blanco */
.bg-white-features {
    background-color: #FFFFFF !important;
    color: #111111 !important;
    border-top: 1px solid #E5E7EB;
}

.feature-top-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-top-icon {
    color: #E30613;
    font-size: 2rem;
    line-height: 1;
}

.feature-top-text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #111111;
}

.feature-top-text p {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: #E5E7EB;
}

/* ¿Cómo funciona? */
.section-title-how {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.red-bar-decor {
    width: 40px;
    height: 3px;
    background-color: #E30613;
    margin: 0 auto;
}

.step-card {
    position: relative;
    padding: 20px;
}

.step-number-badge {
    width: 28px;
    height: 28px;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #E30613;
    margin: 0 auto 15px auto;
}

.step-icon-main {
    color: #E30613;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.step-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.4;
}


/* ==========================================================================
   MODIFICACIONES Y AGREGADOS PARA HEADER Y MENÚ HAMBURGUESA
   ========================================================================== */

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Botón Hamburguesa oculto por defecto en ordenadores */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Por encima del menú lateral */
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF; /* Líneas blancas sobre fondo negro */
    transition: all 0.3s ease-in-out;
    transform-origin: left center;
}

/* Evitar scroll del body con menú abierto */
body.no-scroll {
    overflow: hidden;
}


/* ==========================================================================
   SECCIÓN NUEVA: DISEÑO EXCLUSIVO DE PÁGINA CONTACTO (image_e5afc1.jpg)
   ========================================================================== */

/* Título e indicador rojo */
.contact-main-title {
    font-weight: 800;
    font-size: 2.8rem;
    color: #111111;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.contact-red-bar {
    width: 32px;
    height: 4px;
    background-color: #E30613; /* Rojo corporativo */
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.contact-main-subtitle {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Tarjeta contenedora blanca */
.contact-info-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 45px 35px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    border: 1px solid #E5E7EB;
    width: 100%;
    box-sizing: border-box;
}

/* Items internos de la lista */
.contact-block-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Iconos en círculo con fondo rojo muy suave */
.contact-circle-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(227, 6, 19, 0.06); /* Fondo rosado/rojo claro translúcido */
    color: #E30613; /* Icono en rojo intenso */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.contact-block-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 6px 0;
}

/* Enlaces y textos destacados en rojo */
.contact-highlight-text {
    color: #E30613;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-highlight-text:hover {
    color: #C20510;
    text-decoration: underline;
}

/* Descripciones de texto gris */
.contact-desc-text {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Divisores horizontales tenues */
.contact-card-divider {
    border: 0;
    height: 1px;
    background-color: #E5E7EB;
    margin: 30px auto;
    width: 90%;
}

/* ==========================================================================
   SECCIÓN NUEVA: DISEÑO EXCLUSIVO DE PREGUNTAS FRECUENTES (FAQ)
   ========================================================================== */

.faq-main-title {
    font-weight: 800;
    font-size: 2.8rem;
    color: #111111;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.faq-red-bar {
    width: 32px;
    height: 4px;
    background-color: #E30613;
    margin: 0 auto;
    border-radius: 2px;
}

/* Contenedor principal de fondo blanco como los demás twigs */
.faq-card-container {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 15px 30px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    border: 1px solid #E5E7EB;
    width: 100%;
    box-sizing: border-box;
    margin-top: 35px;
}

/* Item del acordeón */
.faq-accordion-item {
    border-bottom: 1px solid #F3F4F6;
}

.faq-accordion-item:last-child {
    border-bottom: none;
}

/* Botón disparador (Pregunta) */
.faq-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #111111;
    cursor: pointer;
    gap: 20px;
}

.faq-accordion-header:hover {
    color: #E30613;
}

/* Flecha de Bootstrap Icons */
.faq-arrow {
    font-size: 0.95rem;
    color: #9CA3AF;
    transition: transform 0.25s ease-in-out, color 0.25s;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-arrow {
    transform: rotate(180deg);
    color: #E30613;
}

/* Cuerpo desplegable (Respuesta ocultada con transiciones fluidas) */
.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-accordion-body p {
    font-size: 0.92rem;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 22px;
}

.faq-accordion-body p a {
    color: #E30613;
    text-decoration: none;
    font-weight: 500;
}

.faq-accordion-body p a:hover {
    text-decoration: underline;
}

/* Caja gris inferior informativa */
.faq-help-footer-box {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 24px;
    margin-top: 25px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.faq-help-footer-box h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 6px 0;
}

.faq-help-footer-box p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0 0 16px 0;
}

.faq-help-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.faq-help-links a {
    color: #E30613;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.faq-help-links a:hover {
    color: #C20510;
    text-decoration: underline;
}

.faq-bullet-separator {
    color: #D1D5DB;
    font-size: 0.8rem;
}




/* ==========================================================================
   8. DISEÑO EXCLUSIVO DE LA PÁGINA DE CONFIRMACIÓN DE ENTRADA
   ========================================================================== */

/* Contenedor que centra la tarjeta en la pantalla normal */
.confirmation-page-container {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Reutiliza el concepto visual de tu .form-card-container pero personalizado */
.confirmation-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 45px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #E5E7EB;
    width: 100%;
    max-width: 620px; /* Ancho idéntico al de tu formulario anterior (.form-layout-wrapper) */
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto;
}

/* Icono de Check Verde */
.success-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.success-icon {
    width: 72px;
    height: 72px;
    background-color: rgba(40, 167, 69, 0.08); /* Fondo verde translúcido */
    color: #28A745;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

/* Textos Principales */
.success-title {
    font-size: 24px;
    font-weight: 800;
    color: #111111;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    line-height: 1.2;
}
.success-subtitle {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 28px 0;
}

/* Botón de Impresión Rojo (Hereda la esencia de .btn-submit-continue) */
.print-btn-container {
    width: 100%;
    box-sizing: border-box;
}
.btn-print {
    background-color: #E30613; /* Tu rojo corporativo */
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}
.btn-print:hover {
    background-color: #C20510;
    text-decoration: none;
}
.print-subtext {
    color: #666666;
    font-style: italic;
    font-size: 11px;
    margin-top: 8px;
    margin-bottom: 28px;
    display: block;
}

/* Línea divisoria idéntica a tu .info-box-divider */
.card-divider {
    height: 1px;
    background-color: #E5E7EB;
    border: none;
    margin: 20px 0;
    width: 100%;
}

/* Sección Informativa (Alineada a la izquierda como tus bloques inferiores) */
.info-section {
    text-align: left;
    margin-bottom: 20px;
}
.info-title {
    font-weight: 700;
    font-size: 12px;
    color: #111111;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.info-icon {
    color: #E30613;
    margin-right: 8px;
    font-size: 1.1rem;
}
.info-list {
    list-style-type: disc;
    margin-left: 20px;
    padding: 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.5;
}
.info-list li {
    margin-bottom: 6px;
}

/* Bloque Email de Confirmación */
.email-details-section {
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
}
.email-icon {
    color: #E30613;
    margin-right: 10px;
    font-size: 1.1rem;
}
.email-label {
    color: #666666;
    margin-right: 5px;
}
.email-value {
    font-weight: 700;
    color: #111111;
}

/* Bloque Cines Disponibles */
.cinemas-section {
    text-align: left;
    margin-bottom: 25px;
}
.cinemas-title {
    font-weight: 700;
    font-size: 12px;
    color: #111111;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.cinemas-icon {
    color: #E30613;
    margin-right: 8px;
    font-size: 1.1rem;
}
.cinemas-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cinema-tag {
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #374151;
    background-color: #F9FAFB;
}
.cinema-tag-icon {
    color: #E30613;
    margin-right: 6px;
    font-size: 0.95rem;
}
.show-all-cinemas-link {
    color: #E30613;
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.show-all-cinemas-link:hover {
    color: #C20510;
    text-decoration: underline;
}
.map-icon {
    margin-right: 6px;
}

/* Botón de Salir Inferior alternativo */
.exit-btn-container {
    width: 100%;
    margin-top: 10px;
}
.btn-exit {
    background-color: transparent;
    border: 1px solid #D1D5DB;
    color: #374151 !important;
    border-radius: 6px;
    height: 48px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-exit:hover {
    background-color: #F9FAFB;
    border-color: #9CA3AF;
    text-decoration: none;
}




/* Responsivo */
@media (max-width: 768px) {


     .confirmation-card {
        padding: 30px 20px;
    }
    .success-title {
        font-size: 20px;
    }
    .cinemas-tags-container {
        flex-direction: column;
        gap: 6px;
    }
    .cinema-tag {
        width: 100%;
        box-sizing: border-box;
    }
    .email-details-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }




    .faq-main-title {
        font-size: 2.2rem;
    }
    .faq-card-container {
        padding: 10px 20px;
    }
    .faq-accordion-header {
        font-size: 0.95rem;
        padding: 18px 0;
    }
    .faq-help-links {
        flex-direction: column;
        gap: 10px;
    }
    .faq-bullet-separator {
        display: none; /* Oculta el punto intermedio en móvil */
    }

    .contact-main-title {
        font-size: 2.2rem;
    }
    .contact-info-card {
        padding: 30px 20px;
    }
    .contact-card-divider {
        margin: 25px auto;
        width: 100%;
    }
    .contact-desc-text {
        font-size: 0.85rem;
    }


    .form-grid-row {
        flex-direction: column;
        gap: 0;
    }
    .form-col-6 {
        width: 100%;
    }
    .info-box-features {
        flex-direction: column !important;
        gap: 16px !important;
    }
    .footer-col-links {
        gap: 30px;
    }


    /* Mensaje de seguridad debajo del botón de enviar */
    .secure-badge-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-top: 15px;
        color: #666666;
        font-size: 0.82rem;
        font-weight: 500;
    }

    .secure-badge-container i {
        font-size: 0.9rem;
        color: #666666;
    }

      /* Mostrar el botón de hamburguesa */
    .menu-toggle {
        display: flex;
    }

    /* Animación de la hamburguesa transformándose en una 'X' */
    .menu-toggle.open .hamburger-bar:nth-child(1) {
        transform: rotate(45deg);
        position: relative;
        top: -1px;
    }
    .menu-toggle.open .hamburger-bar:nth-child(2) {
        width: 0%;
        opacity: 0;
    }
    .menu-toggle.open .hamburger-bar:nth-child(3) {
        transform: rotate(-45deg);
        position: relative;
        top: 1px;
    }

    /* Capa oscura de fondo */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .nav-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

    /* Contenedor del menú: Se transforma en un panel lateral derecho (Drawer) */
    .nav-container {
        position: fixed;
        top: 0;
        right: -280px; /* Escondido a la derecha */
        width: 280px;
        height: 100vh;
        background-color: #0A0A0A; /* Mismo negro corporativo */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 80px 24px 40px 24px;
        box-sizing: border-box;
        transition: right 0.3s ease-in-out;
    }
    
    .nav-container.open {
        right: 0; /* Entra a la pantalla */
    }

    /* Menú interno vertical */
    .nav-menu {
        flex-direction: column !important;
        gap: 24px !important;
        align-items: flex-start !important;
    }

    .nav-link {
        font-size: 1.05rem !important;
        width: 100%;
        display: block;
        padding: 8px 0;
    }

    /* Línea indicadora activa adaptada al menú móvil lateral */
    .nav-link.active::after {
        bottom: 0;
        width: 40px; /* Más corta y estilizada al lado del texto */
    }

}


/* ==========================================================================
   9. SECCIÓN NUEVA: BUSCADOR DE CINES Y MAPA (DISEÑO INTEGRADO)
   ========================================================================== */

.cinema-search-layout-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    border: 1px solid #E5E7EB;
    width: 100%;
    box-sizing: border-box;
    display: table;
    table-layout: fixed;
    overflow: hidden;
    margin-top: 20px;
}

.cinema-list-side {
    display: table-cell;
    width: 40%;
    vertical-align: top;
    border-right: 1px solid #E5E7EB;
    background-color: #FFFFFF;
}

.cinema-map-side {
    display: table-cell;
    width: 60%;
    vertical-align: top;
    background-color: #E5E7EB;
}

#lista-cines {
    max-height: 500px;
    overflow-y: auto;
}

.cinema-item-row {
    display: table;
    width: 100%;
    padding: 18px 20px;
    border-bottom: 1px solid #F3F4F6;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s;
}

.cinema-item-row:last-child {
    border-bottom: none;
}

.cinema-item-row:hover {
    background-color: #F9FAFB;
}

.cinema-row-icon-side {
    display: table-cell;
    width: 45px;
    vertical-align: middle;
}

.cinema-row-info-side {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    padding-right: 15px;
}

.cinema-row-arrow-side {
    display: table-cell;
    width: 25px;
    vertical-align: middle;
    text-align: right;
    color: #E30613;
    opacity: 0.8;
}

.cinema-marker-circle-red {
    width: 36px;
    height: 36px;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    color: #E30613;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cinema-row-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.cinema-row-address {
    font-size: 0.82rem;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

.cinema-row-web-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    font-size: 0.78rem;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    background-color: #F3F4F6;
    padding: 4px 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.cinema-row-web-btn:hover {
    background-color: #E5E7EB;
    color: #111111;
}

.cinema-loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2.5px solid #E5E7EB;
    border-radius: 50%;
    border-top-color: #E30613;
    animation: spinCinema 0.8s linear infinite;
}

@keyframes spinCinema {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .cinema-search-layout-card {
        display: block;
    }
    .cinema-list-side {
        display: block;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }
    .cinema-map-side {
        display: block;
        width: 100%;
    }
    #lista-cines {
        max-height: 320px;
    }
}

/* Corrección de renderizado para el contenedor del mapa de Google */
.cinema-map-side #map {
    height: 500px;
    width: 100%;
    display: block !important;
}

/* Forzar que las imágenes internas de los controles de Google Maps no se rompan */
.cinema-map-side img {
    max-width: none !important;
}

.btn-cook{
    background-color: red !important;
    font-weight: 500 !important;
}