.elementor-2759 .elementor-element.elementor-element-9756720{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS *//* ==========================================================================
           CSS VARIABLES & DESIGN TOKENS (Summit Brand Identity)
           ========================================================================== */
        :root {
            --bg-dark-1: #050505;
            --bg-dark-2: #0a0c10;
            --card-bg: rgba(16, 21, 28, 0.7);
            --card-bg-solid: #0d121a;
            --glass-bg: rgba(10, 12, 16, 0.75);
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-border-hover: rgba(0, 148, 254, 0.4);

            --text-white: #ffffff;
            --text-gray: #94a3b8;
            --text-muted: #64748b;

            --brand-blue: #0094fe;
            --cta-green: #01cf52;
            --cta-green-hover: #00ea5d;
            --accent-yellow: #f4bc38;

            --gradient-brand: linear-gradient(135deg, var(--brand-blue) 0%, var(--cta-green) 100%);
            --gradient-text: linear-gradient(135deg, #ffffff 30%, var(--brand-blue) 70%, var(--cta-green) 100%);
            --gradient-card-border: linear-gradient(135deg, rgba(0, 148, 254, 0.4), rgba(1, 207, 82, 0.4));

            --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-full: 9999px;

            --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* ==========================================================================
           BASE & RESET (Encapsulado en .summit-scope para WordPress / Elementor)
           ========================================================================== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            font-family: var(--font-main);
            background-color: var(--bg-dark-1);
            color: var(--text-white);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            background:
                radial-gradient(circle at 0% 0%, rgba(0, 148, 254, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 100% 20%, rgba(1, 207, 82, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 100% 100%, rgba(0, 148, 254, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 0% 100%, rgba(1, 207, 82, 0.08) 0%, transparent 40%),
                var(--bg-dark-1);
            background-attachment: fixed;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .summit-scope {
            font-family: var(--font-main) !important;
            color: var(--text-white) !important;
            line-height: 1.6;
            width: 100%;
            overflow-x: hidden;
            position: relative;
        }

        .summit-scope *,
        .summit-scope *::before,
        .summit-scope *::after {
            box-sizing: border-box;
        }

        .summit-scope h1, .summit-scope h2, .summit-scope h3, .summit-scope h4,
        .summit-scope p, .summit-scope a, .summit-scope span, .summit-scope button,
        .summit-scope input, .summit-scope label, .summit-scope select {
            font-family: var(--font-main) !important;
        }

        .summit-scope a {
            text-decoration: none !important;
            color: inherit;
        }

        /* Material Symbols Outlined Icon Fix */
        .summit-scope .material-symbols-outlined {
            font-family: 'Material Symbols Outlined' !important;
            font-weight: normal !important;
            font-style: normal !important;
            font-size: 24px;
            line-height: 1 !important;
            letter-spacing: normal !important;
            text-transform: none !important;
            display: inline-block !important;
            white-space: nowrap !important;
            word-wrap: normal !important;
            direction: ltr !important;
            -webkit-font-feature-settings: 'liga' !important;
            -webkit-font-smoothing: antialiased !important;
        }

        /* Layout Helpers */
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section-padding {
            padding: 90px 0;
        }

        /* Ambient Background Blurbs */
        .ambient-blurbs-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .ambient-blurb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.35;
            animation: floatBlurb 25s infinite ease-in-out alternate;
        }

        .ambient-blurb.blurb-1 {
            width: 50vw;
            height: 50vw;
            background: rgba(0, 148, 254, 0.35);
            top: -10%;
            left: -10%;
        }

        .ambient-blurb.blurb-2 {
            width: 60vw;
            height: 60vw;
            background: rgba(1, 207, 82, 0.25);
            bottom: -20%;
            right: -10%;
            animation-delay: -7s;
            animation-direction: alternate-reverse;
        }

        .ambient-blurb.blurb-3 {
            width: 45vw;
            height: 45vw;
            background: rgba(0, 148, 254, 0.2);
            top: 35%;
            left: 40%;
            animation-delay: -14s;
        }

        @keyframes floatBlurb {
            0% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(3%, 5%) scale(1.1); }
            66% { transform: translate(-2%, 8%) scale(0.95); }
            100% { transform: translate(4%, -5%) scale(1.05); }
        }

        /* Animations & Reveal */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: opacity, transform;
        }

        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Typography */
        h1, h2, h3, h4 {
            color: var(--text-white);
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .gradient-text {
            background: var(--gradient-text) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            color: transparent !important;
        }

        .gradient-brand-text {
            background: var(--gradient-brand) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            color: transparent !important;
        }

        /* ==========================================================================
           1. HERO SECTION (CIUDAD)
           ========================================================================== */
        .city-hero {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 100px;
            padding-bottom: 60px;
            overflow: hidden;
        }

        .city-hero-bg-wrapper {
            position: absolute;
            inset: 0;
            z-index: 1;
            overflow: hidden;
        }

        .city-hero-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: brightness(0.4) contrast(1.1);
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
            transform: scale(1.05);
        }

        .city-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.75) 0%,
                rgba(5, 5, 5, 0.5) 40%,
                rgba(5, 5, 5, 0.95) 100%
            );
        }

        .city-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Selector de Ciudades (Tabs en el Hero) */
        .city-body.elementor-page-2759-tabs {
            display: inline-flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            background: rgba(10, 15, 22, 0.8);
            border: 1px solid var(--glass-border);
            padding: 6px;
            border-radius: var(--radius-full);
            backdrop-filter: blur(16px);
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .city-tab-btn {
            background: transparent;
            border: none;
            color: var(--text-gray);
            font-size: 0.875rem;
            font-weight: 700;
            padding: 8px 18px;
            border-radius: var(--radius-full);
            cursor: pointer;
            transition: var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .city-tab-btn:hover {
            color: var(--text-white);
            background: rgba(255, 255, 255, 0.06);
        }

        .city-tab-btn.active {
            background: var(--gradient-brand);
            color: #000;
            box-shadow: 0 0 20px rgba(1, 207, 82, 0.4);
        }

        .city-tab-btn .tab-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: currentColor;
        }

        .city-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: var(--radius-full);
            background: rgba(0, 148, 254, 0.12);
            border: 1px solid rgba(0, 148, 254, 0.3);
            color: var(--brand-blue);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .city-hero-title {
            font-size: clamp(2.75rem, 6vw, 5.25rem);
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 1rem;
            line-height: 1.05;
        }

        .city-hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: var(--text-gray);
            font-weight: 500;
            margin-bottom: 2.5rem;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-scroll-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            padding: 12px 28px;
            border-radius: var(--radius-full);
            color: var(--text-white);
            font-weight: 700;
            font-size: 0.95rem;
            backdrop-filter: blur(12px);
            transition: var(--transition-fast);
            cursor: pointer;
        }

        .hero-scroll-btn:hover {
            background: rgba(0, 148, 254, 0.2);
            border-color: var(--brand-blue);
            transform: translateY(3px);
            box-shadow: 0 10px 25px rgba(0, 148, 254, 0.25);
        }

        /* ==========================================================================
           2. SECCIÓN DE DOS COLUMNAS (CONTADOR + FORMULARIO)
           ========================================================================== */
        .main-event-grid {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 3rem;
            align-items: start;
        }

        @media (max-width: 992px) {
            .main-event-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

        /* --- Columna Izquierda: Card Imagen & Contador --- */
        .city-info-card {
            background: var(--card-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .city-image-preview-wrapper {
            position: relative;
            height: 260px;
            overflow: hidden;
        }

        .city-image-preview {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .city-info-card:hover .city-image-preview {
            transform: scale(1.05);
        }

        .city-preview-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 20%, rgba(10, 12, 16, 0.95) 100%);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }

        .city-badge-tag {
            background: rgba(1, 207, 82, 0.15);
            border: 1px solid rgba(1, 207, 82, 0.4);
            color: var(--cta-green);
            font-size: 0.8rem;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .city-badge-tag .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: var(--cta-green);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--cta-green);
            animation: pulseDot 1.5s infinite;
        }

        @keyframes pulseDot {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(1, 207, 82, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(1, 207, 82, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(1, 207, 82, 0); }
        }

        .city-countdown-body {
            padding: 2rem;
        }

        .countdown-title-wrap {
            margin-bottom: 1.5rem;
        }

        .countdown-subtitle {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-muted);
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .countdown-main-title {
            font-size: 1.65rem;
            font-weight: 800;
            color: var(--text-white);
        }

        /* Banner de Fecha Formal */
        .event-date-banner {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(0, 148, 254, 0.08);
            border: 1px solid rgba(0, 148, 254, 0.2);
            padding: 12px 18px;
            border-radius: var(--radius-md);
            margin-bottom: 1.75rem;
        }

        .event-date-banner .material-symbols-outlined {
            color: var(--brand-blue);
            font-size: 1.75rem;
        }

        .event-date-text {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--text-white);
        }

        /* Estilos del Countdown Timer */
        .countdown-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .countdown-box {
            background: rgba(5, 8, 14, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            padding: 14px 8px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
            transition: var(--transition-fast);
        }

        .countdown-box::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-brand);
            opacity: 0.7;
        }

        .countdown-num {
            font-size: clamp(1.5rem, 2.5vw, 2.25rem);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 4px;
            color: #ffffff;
            font-variant-numeric: tabular-nums;
        }

        .countdown-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-gray);
            font-weight: 700;
        }

        /* Estado "¡Hoy es el evento! 🎉" */
        .today-event-card {
            background: linear-gradient(135deg, rgba(1, 207, 82, 0.2), rgba(0, 148, 254, 0.2));
            border: 1px solid var(--cta-green);
            border-radius: var(--radius-md);
            padding: 1.75rem;
            text-align: center;
            box-shadow: 0 0 30px rgba(1, 207, 82, 0.3);
            animation: pulseGlow 2s infinite alternate;
        }

        @keyframes pulseGlow {
            from { box-shadow: 0 0 20px rgba(1, 207, 82, 0.2); }
            to { box-shadow: 0 0 35px rgba(1, 207, 82, 0.5); }
        }

        .today-event-title {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .today-event-desc {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* --- Columna Derecha: Formulario de Registro --- */
        .form-card {
            background: rgba(13, 18, 26, 0.85);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            backdrop-filter: blur(25px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
            position: relative;
            overflow: hidden;
        }

        .form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-brand);
        }

        .form-header {
            margin-bottom: 2rem;
        }

        .form-title {
            font-size: 1.85rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .form-subtitle {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--text-gray);
            margin-bottom: 0.4rem;
        }

        .form-label .req {
            color: var(--cta-green);
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-wrapper .material-symbols-outlined {
            position: absolute;
            left: 14px;
            color: var(--text-muted);
            font-size: 20px;
            transition: color var(--transition-fast);
            pointer-events: none;
        }

        .form-control {
            width: 100%;
            background: rgba(5, 8, 14, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-sm);
            padding: 12px 14px 12px 44px;
            color: var(--text-white);
            font-size: 0.95rem;
            outline: none;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
        }

        .form-control:focus {
            background: rgba(5, 8, 14, 0.9);
            border-color: var(--brand-blue);
            box-shadow: 0 0 15px rgba(0, 148, 254, 0.3);
        }

        .form-control:focus + .material-symbols-outlined,
        .input-wrapper:focus-within .material-symbols-outlined {
            color: var(--brand-blue);
        }

        /* Checkbox Estilizado de Política de Datos */
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 1.5rem;
            margin-bottom: 1.75rem;
        }

        .custom-checkbox {
            appearance: none;
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            background: rgba(5, 8, 14, 0.6);
            cursor: pointer;
            display: grid;
            place-content: center;
            flex-shrink: 0;
            margin-top: 2px;
            transition: var(--transition-fast);
        }

        .custom-checkbox::before {
            content: "✓";
            font-size: 13px;
            font-weight: 800;
            color: #000;
            transform: scale(0);
            transition: transform 0.15s ease-in-out;
        }

        .custom-checkbox:checked {
            background: var(--cta-green);
            border-color: var(--cta-green);
            box-shadow: 0 0 10px rgba(1, 207, 82, 0.4);
        }

        .custom-checkbox:checked::before {
            transform: scale(1);
        }

        .checkbox-label {
            font-size: 0.825rem;
            color: var(--text-gray);
            line-height: 1.45;
            cursor: pointer;
        }

        .checkbox-label a {
            color: var(--brand-blue);
            text-decoration: underline !important;
            transition: color var(--transition-fast);
        }

        .checkbox-label a:hover {
            color: var(--cta-green);
        }

        /* Botón de Submit CTA */
        .btn-submit-cta {
            width: 100%;
            background: var(--cta-green);
            color: #03200b;
            font-size: 1.05rem;
            font-weight: 800;
            letter-spacing: 0.03em;
            padding: 15px 24px;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: var(--transition-normal);
            box-shadow: 0 0 25px rgba(1, 207, 82, 0.35);
        }

        .btn-submit-cta:hover {
            background: var(--cta-green-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(1, 207, 82, 0.5);
        }

        .btn-submit-cta:active {
            transform: translateY(0);
        }

        /* Modal / Mensaje de Éxito */
        .form-success-message {
            display: none;
            background: rgba(1, 207, 82, 0.12);
            border: 1px solid var(--cta-green);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            text-align: center;
            margin-top: 1rem;
        }

        .form-success-message.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ==========================================================================
           3. SECCIÓN BANNER / QUOTE DESTACADO (FONDO OSCURO CON CONCEPTO)
           ========================================================================== */
        .quote-banner-section {
            position: relative;
            background: var(--bg-dark-2);
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
            overflow: hidden;
        }

        .quote-banner-container {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 960px;
            margin: 0 auto;
        }

        .quote-icon-decor {
            font-size: 3.5rem;
            color: var(--brand-blue);
            opacity: 0.4;
            margin-bottom: 1rem;
            display: block;
        }

        .quote-text-title {
            font-size: clamp(1.75rem, 3.5vw, 2.75rem);
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.25;
            margin-bottom: 1.25rem;
            letter-spacing: -0.02em;
        }

        .quote-text-body {
            font-size: clamp(1.15rem, 2vw, 1.5rem);
            color: var(--text-gray);
            font-weight: 500;
            line-height: 1.5;
        }

        .quote-highlight {
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        /* ==========================================================================
           4. SECCIÓN PARTNERS (CARRUSEL LOGOS CONTINUO)
           ========================================================================== */
        .ticker-section {
            padding: 80px 0;
            overflow: hidden;
            position: relative;
        }

        .ticker-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .ticker-title {
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .ticker-wrap {
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
        }

        .ticker-track {
            display: flex;
            align-items: center;
            gap: 2rem;
            width: max-content;
            animation: marquee 28s linear infinite;
        }

        .ticker-track:hover {
            animation-play-state: paused;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .partner-logo-card {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius-md);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
            height: 64px;
        }

        .partner-logo-card img {
            height: 38px;
            max-height: 38px;
            width: auto;
            max-width: 150px;
            object-fit: contain;
            display: block;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .partner-logo-card:hover {
            background: #ffffff;
            transform: translateY(-4px) scale(1.06);
            box-shadow: 0 10px 30px rgba(0, 148, 254, 0.4);
        }

        /* ==========================================================================
           5. FOOTER
           ========================================================================== */
        .summit-footer {
            background: var(--bg-dark-2);
            border-top: 1px solid var(--glass-border);
            padding: 3.5rem 0 2rem 0;
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-links a:hover {
            color: var(--text-white);
        }

        /* Responsive Fixes */
        @media (max-width: 768px) {
            .section-padding { padding: 60px 0; }
            .form-card { padding: 1.5rem; }
            .city-hero { min-height: 75vh; }
            .countdown-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-bottom { flex-direction: column; text-align: center; }
        }
        
        /* --- HERO --- */
.city-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 18px; border-radius: 99px;
    background: rgba(0, 148, 254, 0.15); border: 1px solid rgba(0, 148, 254, 0.35);
    color: #0094fe; font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
}
.city-hero-title h1, .city-hero-title h2 {
    font-size: clamp(2.5rem, 5.5vw, 4.75rem) !important; 
    font-weight: 800 !important; text-transform: uppercase; line-height: 1.05; color: #fff;
}
.city-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem); color: #94a3b8;
}
.hero-scroll-btn a {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 28px; border-radius: 99px; color: #fff; font-weight: 700;
    transition: all 0.3s;
}
.hero-scroll-btn a:hover { 
    background: rgba(0, 148, 254, 0.25); border-color: #0094fe; 
}

/* --- TARJETAS (INFO Y FORMULARIO) --- */
.city-info-card {
    background: rgba(16, 21, 28, 0.8); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.form-card {
    background: rgba(13, 18, 26, 0.9); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 2.25rem; box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    border-top: 4px solid #0094fe; 
}

/* --- MANIFIESTO QUOTE --- */
.quote-banner-section {
    background: #0a0c10; border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08); padding: 70px 0; text-align: center;
}
.quote-text-title h2 { 
    font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 800; color: #fff; 
}
.quote-text-body { 
    font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: #94a3b8; max-width: 800px; margin: 0 auto; 
}

/* --- CONTADOR DINÁMICO --- */
.countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 15px; }
.countdown-box { background: rgba(5,8,14,0.85); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px 6px; text-align: center; }
.countdown-num { font-size: 1.85rem; font-weight: 800; color: #fff; line-height: 1; }
.countdown-label { font-size: 0.68rem; text-transform: uppercase; color: #94a3b8; font-weight: 700; margin-top: 4px; }
.today-event-card { background: linear-gradient(135deg, rgba(1,207,82,0.2), rgba(0,148,254,0.2)); border: 1px solid #01cf52; border-radius: 14px; padding: 1.5rem; text-align: center; margin-top: 15px; }/* End custom CSS */