
        :root {
            --primary-blue: #1357a9;
            --accent-gold: #eabf11;
            --accent-red: #da251d;
            --bg-dark: #0b0f19;
            --bg-section: #111827;
            --text-light: #ecf2ff;
            --text-muted: #9ca3af;
            --catania-volcanic: #c62828;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.7;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1f2e 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-decoration: none;
        }

        .cta-header {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-header:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .breadcrumb a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        .breadcrumb span {
            margin: 0 8px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #4a0e0e 50%, var(--catania-volcanic) 100%);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="25" y="60" font-size="20" opacity="0.05">📍</text></svg>') repeat;
            background-size: 80px 80px;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .location-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .tv-badge {
            display: inline-block;
            background: var(--accent-red);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            margin-left: 10px;
        }

        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

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

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .cities-served {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin: 25px 0;
        }

        .city-chip {
            background: rgba(255,255,255,0.1);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 0.95rem;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.1);
            padding: 12px 20px;
            border-radius: 10px;
        }

        .trust-badge .icon {
            font-size: 1.5rem;
        }

        .trust-badge .text {
            text-align: left;
        }

        .trust-badge .number {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--accent-gold);
        }

        .trust-badge .label {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Content Sections */
        section {
            padding: 60px 0;
        }

        .section-dark {
            background: var(--bg-section);
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        h2 span {
            color: var(--accent-gold);
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .service-card {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(198, 40, 40, 0.3);
            border-color: var(--catania-volcanic);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .service-card h3 {
            color: var(--accent-gold);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

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

        .service-card .badge-unique {
            display: inline-block;
            background: var(--accent-red);
            color: white;
            padding: 4px 12px;
            border-radius: 10px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 15px;
        }

        /* Zone Section */
        .zone-box {
            background: linear-gradient(135deg, rgba(198, 40, 40, 0.2), rgba(74, 14, 14, 0.2));
            border: 1px solid rgba(198, 40, 40, 0.3);
            border-radius: 20px;
            padding: 40px;
            margin-top: 40px;
        }

        .zone-box h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .zone-item {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
        }

        .zone-item:hover {
            background: rgba(234, 191, 17, 0.1);
        }

        .zone-item .city {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .zone-item .distance {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .no-extra-cost {
            text-align: center;
            margin-top: 25px;
            padding: 15px;
            background: rgba(37, 211, 102, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(37, 211, 102, 0.3);
        }

        .no-extra-cost span {
            color: #25D366;
            font-weight: 600;
        }

        /* Events Section */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .event-card {
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(255,255,255,0.05);
            padding: 25px;
            border-radius: 15px;
            transition: all 0.3s;
        }

        .event-card:hover {
            background: rgba(234, 191, 17, 0.1);
        }

        .event-icon {
            font-size: 2.5rem;
        }

        .event-card h4 {
            color: var(--text-light);
            margin-bottom: 8px;
            font-size: 1.2rem;
        }

        .event-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 25px;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-size: 4rem;
            color: var(--catania-volcanic);
            opacity: 0.3;
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            background: var(--catania-volcanic);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }

        .author-info .name {
            font-weight: 600;
        }

        .author-info .location {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .stars {
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        /* Pricing Preview */
        .pricing-box {
            background: linear-gradient(135deg, rgba(198, 40, 40, 0.3), rgba(74, 14, 14, 0.2));
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            margin-top: 40px;
        }

        .pricing-box h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .price-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .price-card {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 30px;
            min-width: 250px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .price-card.featured {
            border-color: var(--accent-gold);
            transform: scale(1.05);
        }

        .price-card h4 {
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

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

        .price-card .description {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
        }

        .price-card ul li {
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }

        .price-card ul li::before {
            content: '✓';
            color: var(--accent-gold);
        }

        /* FAQ Section */
        .faq-list {
            max-width: 800px;
            margin: 40px auto 0;
        }

        .faq-item {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: rgba(234, 191, 17, 0.1);
        }

        .faq-answer {
            padding: 0 20px 20px;
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #4a0e0e 0%, var(--catania-volcanic) 100%);
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

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

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

        .btn-primary {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            padding: 18px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 18px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border: 2px solid var(--accent-gold);
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: var(--accent-gold);
            color: var(--bg-dark);
        }

        /* Footer */
        footer {
            background: var(--bg-dark);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

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

        .copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Sticky Mobile CTA */
        .mobile-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-dark);
            padding: 15px 20px;
            z-index: 100;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-cta a {
            display: block;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            text-align: center;
            padding: 15px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
        }

        /* ===== LOGO HEADER ===== */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            height: 40px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.05);
        }
        /* ===== NAVBAR MENU ===== */
        .nav-toggle { display: flex; align-items: center; gap: 10px; }
        .menu-btn {
            display: flex; align-items: center; justify-content: center;
            width: 44px; height: 44px; border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.14); background: transparent;
            cursor: pointer; color: #fff; flex-shrink: 0;
        }
        .menu-btn:hover { background: rgba(255,255,255,0.06); }
        .nav-cta-wa {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 10px 18px; border-radius: 999px;
            background: linear-gradient(45deg, #25D366, #128C7E);
            color: #fff; font-weight: 700; font-size: 0.9rem;
            text-decoration: none; transition: transform 0.2s; flex-shrink: 0;
        }
        .nav-cta-wa:hover { transform: translateY(-1px); }
        .nav-menu {
            display: none; position: absolute; top: 100%; left: 0; right: 0;
            background: rgba(11, 15, 25, 0.98);
            border-bottom: 1px solid rgba(234, 191, 17, 0.2);
            padding: 10px 0; backdrop-filter: blur(10px); z-index: 999;
        }
        .nav-menu.open { display: block; }
        .nav-menu a {
            display: block; padding: 12px 24px; color: #ecf2ff;
            text-decoration: none; font-weight: 500; transition: background 0.2s;
        }
        .nav-menu a:hover { background: rgba(255,255,255,0.06); }
        @media (max-width: 600px) {
            .nav-cta-wa span { display: none; }
            .nav-cta-wa { padding: 10px 14px; }
        }


        /* ===== LA CORRIDA SECTION ===== */
        .corrida-section {
            background: linear-gradient(135deg, rgba(218, 37, 29, 0.1) 0%, rgba(19, 87, 169, 0.1) 100%);
            border-radius: 25px;
            padding: 40px 25px;
            margin: 20px 0;
            border: 1px solid rgba(218, 37, 29, 0.3);
        }

        .corrida-badge {
            display: inline-block;
            background: var(--accent-red);
            color: white;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .corrida-title {
            font-size: clamp(24px, 4vw, 32px);
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .corrida-title .highlight {
            color: var(--accent-gold);
        }

        .corrida-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .corrida-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .corrida-gallery img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 15px;
            border: 2px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .corrida-gallery img:hover {
            transform: scale(1.03);
            border-color: var(--accent-gold);
            box-shadow: 0 10px 30px rgba(234, 191, 17, 0.3);
        }

        .corrida-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .corrida-feature {
            background: rgba(255,255,255,0.05);
            padding: 25px 20px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .corrida-feature:hover {
            transform: translateY(-5px);
            border-color: var(--catania-volcanic);
            box-shadow: 0 10px 25px rgba(198, 40, 40, 0.2);
        }

        .corrida-feature-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .corrida-feature-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }

        .corrida-feature-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .corrida-videos {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 25px;
        }

        .corrida-video-card {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            text-align: center;
        }

        .corrida-video-card:hover {
            border-color: var(--accent-red);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(218, 37, 29, 0.2);
        }

        .corrida-video-card h4 {
            color: var(--text-light);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .corrida-video-card p {
            color: var(--text-muted);
            font-size: 13px;
            margin-bottom: 15px;
        }

        .corrida-video-card a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #000000 0%, #25F4EE 50%, #FE2C55 100%);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .corrida-video-card a:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(254, 44, 85, 0.4);
        }

        /* ===== VIDEO SECTION ===== */
        .video-section {
            background: var(--bg-dark);
            padding: 60px 0;
        }

        .video-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(198, 40, 40, 0.3);
            background: #000;
            max-width: 700px;
            margin: 0 auto;
            border: 2px solid rgba(234, 191, 17, 0.3);
        }

        .video-container:hover {
            border-color: var(--accent-gold);
            box-shadow: 0 20px 60px rgba(234, 191, 17, 0.2);
        }

        .ratio-16-9 {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
        }

        .ratio-16-9 iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* ===== KLARNA BADGE ===== */
        .klarna-badge {
            max-width: 220px;
            margin: 0 auto;
            display: block;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .klarna-badge:hover {
            transform: scale(1.05);
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .logo-img {
                height: 32px;
            }

            .corrida-gallery {
                grid-template-columns: 1fr;
            }

            .corrida-gallery img {
                height: 200px;
            }

            .corrida-features {
                grid-template-columns: 1fr;
            }

            .corrida-videos {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

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

            .events-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .price-cards {
                flex-direction: column;
                align-items: center;
            }

            .price-card.featured {
                transform: none;
            }

            .mobile-cta {
                display: block;
            }

            .cta-section {
                padding-bottom: 120px;
            }

            .trust-badges {
                flex-direction: column;
                align-items: center;
            }

            .klarna-badge {
                max-width: 180px;
            }
        }
    