        /* ========================================
           CSS VARIABLES
        ======================================== */
        :root {
            --primary: #2D3A24;
            --primary-light: #4A5D3A;
            --secondary: #8B7355;
            --accent: #FF6B00;
            --accent-hover: #E55D00;
            --accent-yellow: #FFD000;
            --bg-dark: #1A1F16;
            --bg-section: #232920;
            --bg-light: #F5F2EB;
            --text-light: #FFFFFF;
            --text-dark: #1A1F16;
            --text-muted: #9CA38F;
            --border-color: rgba(255,255,255,0.1);

            --font-heading: 'Bebas Neue', system-ui, sans-serif;
            --font-body: 'Montserrat', system-ui, sans-serif;

            --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
            --shadow-accent: 0 0 30px rgba(255,107,0,0.4);

            --transition: 300ms ease-out;
            --radius: 4px;
            --radius-lg: 8px;
        }

        /* ========================================
           RESET & BASE
        ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            font-weight: 500;
            background: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        a {
            text-decoration: none;
            color: inherit;
        }

        ul, ol {
            list-style: none;
        }

        /* ========================================
           TYPOGRAPHY
        ======================================== */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: 0.02em;
        }

        h1 { font-size: clamp(3rem, 10vw, 7rem); }
        h2 { font-size: clamp(2rem, 6vw, 4rem); }
        h3 { font-size: clamp(1.5rem, 4vw, 2rem); }
        h4 { font-size: 1.25rem; }

        .text-accent { color: var(--accent); }
        .text-muted { color: var(--text-muted); }

        /* ========================================
           LAYOUT
        ======================================== */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 80px 0;
        }

        @media (max-width: 768px) {
            .section { padding: 48px 0; }
        }

        .grid {
            display: grid;
            gap: 24px;
        }

        .grid-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-4 { grid-template-columns: repeat(4, 1fr); }

        @media (max-width: 1024px) {
            .grid-4 { grid-template-columns: repeat(2, 1fr); }
            .grid-3 { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
        }

        /* ========================================
           BUTTONS
        ======================================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 32px;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            transition: all var(--transition);
            min-height: 48px;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--text-light);
            box-shadow: var(--shadow-md), 0 0 0 0 rgba(255,107,0,0.4);
            animation: pulse-btn 2s infinite;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--shadow-accent);
            animation: none;
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        @keyframes pulse-btn {
            0%, 100% { box-shadow: var(--shadow-md), 0 0 0 0 rgba(255,107,0,0.4); }
            50% { box-shadow: var(--shadow-md), 0 0 0 12px rgba(255,107,0,0); }
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--accent);
        }

        .btn-secondary:hover {
            background: rgba(255,107,0,0.1);
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: rgba(255,255,255,0.1);
            color: var(--text-light);
            backdrop-filter: blur(8px);
        }

        .btn-ghost:hover {
            background: rgba(255,255,255,0.2);
        }

        .btn-lg {
            padding: 20px 48px;
            font-size: 1.125rem;
        }

        /* ========================================
           HEADER / NAVIGATION
        ======================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: all var(--transition);
        }

        .header.scrolled {
            background: rgba(26,31,22,0.95);
            backdrop-filter: blur(12px);
            box-shadow: var(--shadow-md);
            padding: 12px 0;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--text-light);
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: var(--accent);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .logo-img {
            height: 48px;
            width: auto;
        }

        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            font-weight: 600;
            color: var(--text-muted);
            transition: color var(--transition);
            position: relative;
        }

        .nav-link:hover {
            color: var(--text-light);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-cta {
            margin-left: 16px;
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
            width: 48px;
            height: 48px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .menu-toggle span {
            display: block;
            width: 100%;
            height: 3px;
            background: var(--text-light);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .nav-mobile {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background: #0a0d08;
            padding: 80px 32px 32px;
            transition: right var(--transition);
            box-shadow: var(--shadow-lg);
            z-index: 1001;
            overflow-y: auto;
        }

        .nav-mobile.active {
            right: 0;
        }

        .nav-mobile-links {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .nav-mobile-link {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-light);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .nav-mobile-link:hover {
            color: var(--accent);
        }

        .nav-mobile-cta {
            margin-top: 32px;
            width: 100%;
        }

        .menu-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--transition), visibility var(--transition);
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .menu-toggle { display: flex; }
            .nav-mobile { display: block; }
            .menu-overlay { display: block; visibility: hidden; pointer-events: none; }
            .menu-overlay.active { visibility: visible; pointer-events: auto; }
        }

        /* ========================================
           HERO SECTION
        ======================================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -2;
        }

        .hero-bg img,
        .hero-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-placeholder {
            background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 50%, var(--secondary) 100%);
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(26,31,22,0.7) 0%,
                rgba(26,31,22,0.5) 50%,
                rgba(26,31,22,0.9) 100%
            );
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            padding: 0 24px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,107,0,0.2);
            border: 1px solid var(--accent);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 24px;
            animation: fadeInUp 0.6s ease-out;
        }

        .hero h1 {
            margin-bottom: 16px;
            animation: fadeInUp 0.6s ease-out 0.1s both;
        }

        .hero h1 span {
            color: var(--accent);
        }

        .hero-subtitle {
            font-size: clamp(1.125rem, 3vw, 1.5rem);
            color: var(--text-muted);
            margin-bottom: 8px;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        .hero-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 40px;
            animation: fadeInUp 0.6s ease-out 0.3s both;
        }

        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.125rem;
            color: var(--text-light);
        }

        .hero-meta-item i {
            color: var(--accent);
            font-size: 1.25rem;
        }

        .hero-cta {
            animation: fadeInUp 0.6s ease-out 0.4s both;
        }

        .hero-scroll {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.875rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========================================
           EVENT INFO BAR
        ======================================== */
        .event-info {
            background: var(--bg-section);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .event-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        @media (max-width: 768px) {
            .event-info-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        .event-info-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 24px;
        }

        .event-info-icon {
            width: 64px;
            height: 64px;
            background: rgba(255,107,0,0.1);
            border: 1px solid rgba(255,107,0,0.3);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: var(--accent);
            flex-shrink: 0;
        }

        .event-info-content h4 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            margin-bottom: 4px;
        }

        .event-info-content p {
            color: var(--text-muted);
            font-size: 0.9375rem;
        }

        /* ========================================
           ABOUT SECTION
        ======================================== */
        .about {
            background: var(--bg-dark);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .about-tag {
            display: inline-block;
            background: rgba(255,107,0,0.1);
            color: var(--accent);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .about h2 {
            margin-bottom: 24px;
        }

        .about-text {
            color: var(--text-muted);
            margin-bottom: 24px;
            font-size: 1.0625rem;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-feature i {
            color: var(--accent);
            font-size: 1.25rem;
        }

        .about-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .about-image-placeholder {
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: rgba(255,255,255,0.3);
        }

        .about-image::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid var(--accent);
            border-radius: var(--radius-lg);
            opacity: 0.5;
        }

        /* ========================================
           ZONES SECTION
        ======================================== */
        .zones {
            background: var(--bg-section);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 48px;
        }

        .section-header h2 {
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.0625rem;
        }

        .zones-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        @media (max-width: 1024px) {
            .zones-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 640px) {
            .zones-grid { grid-template-columns: 1fr; }
        }

        .zone-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition);
        }

        .zone-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
            box-shadow: var(--shadow-accent);
        }

        .zone-card-image {
            aspect-ratio: 16/10;
            position: relative;
            overflow: hidden;
        }

        .zone-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .zone-card-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
            z-index: 1;
        }

        .zone-card-content {
            padding: 24px;
        }

        .zone-card h3 {
            margin-bottom: 8px;
            font-family: var(--font-heading);
        }

        .zone-card p {
            color: var(--text-muted);
            font-size: 0.9375rem;
        }

        /* ========================================
           GALLERY SECTION
        ======================================== */
        .gallery {
            background: var(--bg-dark);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        @media (max-width: 1024px) {
            .gallery-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 768px) {
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 1;
            border-radius: var(--radius);
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item:first-child {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: rgba(255,255,255,0.3);
            transition: transform var(--transition);
        }

        .gallery-item:hover .gallery-item-placeholder {
            transform: scale(1.1);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255,107,0,0);
            transition: background var(--transition);
        }

        .gallery-item:hover::after {
            background: rgba(255,107,0,0.2);
        }

        .gallery-item i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            font-size: 2rem;
            color: var(--text-light);
            z-index: 1;
            transition: transform var(--transition);
        }

        .gallery-item:hover i {
            transform: translate(-50%, -50%) scale(1);
        }

        .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

        /* ========================================
           TICKETS SECTION
        ======================================== */
        .tickets {
            background: var(--bg-section);
            position: relative;
            overflow: hidden;
        }

        .tickets::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(255,107,0,0.05) 0%, transparent 50%);
        }

        .tickets-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
        }

        @media (max-width: 1024px) {
            .tickets-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
        }

        .ticket-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px;
            text-align: center;
            position: relative;
            transition: all var(--transition);
        }

        .ticket-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: var(--shadow-accent);
        }

        .ticket-card.featured {
            border-color: var(--accent);
            background: rgba(255,107,0,0.05);
        }

        .ticket-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--text-light);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .ticket-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: rgba(255,107,0,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent);
        }

        .ticket-card h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            margin-bottom: 8px;
        }

        .ticket-price {
            margin-bottom: 24px;
        }

        .ticket-price-old {
            color: var(--text-muted);
            text-decoration: line-through;
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .ticket-price-current {
            font-size: 3rem;
            font-weight: 700;
            font-family: var(--font-heading);
            color: var(--text-light);
        }

        .ticket-price-current span {
            font-size: 1.25rem;
            color: var(--text-muted);
        }

        .ticket-features {
            text-align: left;
            margin-bottom: 32px;
        }

        .ticket-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-muted);
        }

        .ticket-features li:last-child {
            border-bottom: none;
        }

        .ticket-features li i {
            color: var(--accent);
            font-size: 1.125rem;
        }

        .ticket-features li.disabled {
            color: rgba(156,163,143,0.5);
        }

        .ticket-features li.disabled i {
            color: rgba(156,163,143,0.5);
        }

        .ticket-card .btn {
            width: 100%;
        }

        /* ========================================
           PAYMENT SECTION
        ======================================== */
        .payment {
            background: var(--bg-dark);
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: 1fr; }
        }

        .payment-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
            transition: all var(--transition);
        }

        .payment-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
        }

        .payment-logo {
            height: 48px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .payment-logo-bizum {
            background: #E30613;
            color: white;
            padding: 8px 24px;
            border-radius: var(--radius);
            font-weight: 700;
            font-size: 1.25rem;
        }

        .payment-logo-paypal {
            color: #003087;
            font-weight: 700;
            font-size: 2rem;
        }

        .payment-logo-card {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 12px 32px;
            border-radius: var(--radius);
            color: white;
            font-weight: 600;
        }

        .payment-card h4 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .payment-card p {
            color: var(--text-muted);
            font-size: 0.9375rem;
            margin-bottom: 24px;
        }

        .payment-note {
            text-align: center;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .payment-note i {
            color: var(--accent);
            margin-right: 8px;
        }

        /* ========================================
           CTA SECTION
        ======================================== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .cta-content {
            text-align: center;
            position: relative;
        }

        .cta-content h2 {
            margin-bottom: 16px;
        }

        .cta-content p {
            color: var(--text-muted);
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto 32px;
        }

        .cta-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* ========================================
           FOOTER
        ======================================== */
        .footer {
            background: var(--bg-section);
            padding: 64px 0 32px;
            border-top: 1px solid var(--border-color);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 640px) {
            .footer-grid { grid-template-columns: 1fr; }
        }

        .footer-brand p {
            color: var(--text-muted);
            margin-top: 16px;
            max-width: 300px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: all var(--transition);
        }

        .footer-social a:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--text-light);
        }

        .footer-column h4 {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .footer-column ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-column a {
            color: var(--text-muted);
            transition: color var(--transition);
        }

        .footer-column a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .footer-legal {
            display: flex;
            gap: 24px;
        }

        .footer-legal a {
            color: var(--text-muted);
            font-size: 0.875rem;
            transition: color var(--transition);
        }

        .footer-legal a:hover {
            color: var(--accent);
        }

        /* ========================================
           ANIMATIONS (Scroll-triggered)
        ======================================== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========================================
           UTILITIES
        ======================================== */
        .text-center { text-align: center; }
        .mb-0 { margin-bottom: 0; }
        .mb-16 { margin-bottom: 16px; }
        .mb-24 { margin-bottom: 24px; }
        .mb-32 { margin-bottom: 32px; }
        .mb-48 { margin-bottom: 48px; }

        /* ========================================
           FORMULARIOS
        ======================================== */
        .form-section {
            min-height: calc(100vh - 200px);
            display: flex;
            align-items: center;
            padding-top: 120px;
        }

        .form-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 48px;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.9375rem;
            margin-bottom: 24px;
            transition: color var(--transition);
        }

        .back-link:hover {
            color: var(--accent);
        }

        .form-header h1 {
            margin-bottom: 16px;
        }

        .form-subtitle {
            color: var(--text-muted);
            font-size: 1.0625rem;
            margin-bottom: 16px;
        }

        .form-price {
            font-size: 2.5rem;
            font-weight: 700;
            font-family: var(--font-heading);
            color: var(--accent);
        }

        .form-price span {
            font-size: 1rem;
            color: var(--text-muted);
        }

        .plan-badge {
            display: inline-block;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .plan-colaborador {
            background: rgba(139, 115, 85, 0.2);
            color: var(--secondary);
            border: 1px solid var(--secondary);
        }

        .plan-solitario {
            background: rgba(255, 107, 0, 0.2);
            color: var(--accent);
            border: 1px solid var(--accent);
        }

        .plan-familiar {
            background: rgba(74, 93, 58, 0.2);
            color: var(--primary-light);
            border: 1px solid var(--primary-light);
        }

        .form-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 40px;
            max-width: 700px;
            margin: 0 auto;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        @media (max-width: 768px) {
            .form-grid { grid-template-columns: 1fr; }
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-weight: 600;
            font-size: 0.9375rem;
            color: var(--text-light);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            color: var(--text-light);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all var(--transition);
        }

        .form-group input::placeholder {
            color: var(--text-muted);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
        }

        .form-footer {
            margin-top: 32px;
            text-align: center;
        }

        /* ========================================
           PÁGINAS DE PAGO
        ======================================== */
        .payment-page {
            min-height: calc(100vh - 200px);
            padding-top: 120px;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .payment-methods { grid-template-columns: 1fr; }
        }

        .payment-method-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px;
            text-align: center;
            transition: all var(--transition);
        }

        .payment-method-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
        }

        .payment-method-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 700;
        }

        .payment-method-icon.bizum {
            background: #E30613;
            color: white;
        }

        .payment-method-icon.paypal {
            background: #003087;
            color: white;
        }

        .payment-method-icon.transfer {
            background: rgba(255, 107, 0, 0.1);
            color: var(--accent);
        }

        .payment-method-icon.transfer i {
            font-size: 2rem;
        }

        .payment-method-card h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .payment-info {
            color: var(--text-muted);
            font-size: 0.9375rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .payment-placeholder {
            background: rgba(255, 255, 255, 0.05);
            border: 2px dashed var(--border-color);
            border-radius: var(--radius);
            padding: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .payment-placeholder i {
            font-size: 2rem;
        }

        /* ========================================
           PÁGINA GENÉRICA (PLANTILLA)
        ======================================== */
        .page-content {
            padding-top: 120px;
            min-height: calc(100vh - 200px);
        }

        .page-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .page-header h1 {
            margin-bottom: 16px;
        }

        .page-subtitle {
            color: var(--text-muted);
            font-size: 1.125rem;
        }

        .page-body {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 48px;
        }

        .page-body h2 {
            font-size: 1.75rem;
            margin-top: 32px;
            margin-bottom: 16px;
        }

        .page-body h2:first-child {
            margin-top: 0;
        }

        .page-body p {
            color: var(--text-muted);
            margin-bottom: 16px;
            line-height: 1.8;
        }

        @media (max-width: 768px) {
            .page-body {
                padding: 24px;
            }
        }
