
        :root {
            --primary-blue: #1357a9;
            --accent-gold: #eabf11;
            --accent-red: #da251d;
            --bg-dark: #0b0f19;
            --bg-section: #111827;
            --text-light: #ecf2ff;
            --text-muted: #9ca3af;
            --gradient-gold: linear-gradient(135deg, #eabf11 0%, #f5d547 50%, #eabf11 100%);
            --gradient-blue: linear-gradient(135deg, #1357a9 0%, #1e6fd9 100%);
            --shadow-gold: 0 4px 30px rgba(234, 191, 17, 0.3);
            --shadow-blue: 0 4px 30px rgba(19, 87, 169, 0.3);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: rgba(17, 24, 39, 0.9);
            padding: 12px 0;
            border-bottom: 1px solid rgba(234, 191, 17, 0.1);
        }

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

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 10px;
            list-style: none;
            font-size: 0.85rem;
        }

        .breadcrumb-list a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-list a:hover {
            color: var(--accent-gold);
        }

        .breadcrumb-list .separator {
            color: var(--text-muted);
        }

        .breadcrumb-list .current {
            color: var(--accent-gold);
        }

        /* Hero Section */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(19, 87, 169, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(234, 191, 17, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(234, 191, 17, 0.1);
            border: 1px solid rgba(234, 191, 17, 0.3);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .hero-badge i {
            font-size: 0.9rem;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero h1 .highlight {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 35px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .hero-feature i {
            color: var(--accent-gold);
            font-size: 1.1rem;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--gradient-gold);
            color: var(--bg-dark);
            box-shadow: var(--shadow-gold);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 40px rgba(234, 191, 17, 0.4);
        }

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

        .btn-secondary:hover {
            background: var(--primary-blue);
            box-shadow: var(--shadow-blue);
        }

        .hero-visual {
            position: relative;
        }

        .hero-card {
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(11, 15, 25, 0.9));
            border: 1px solid rgba(234, 191, 17, 0.2);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-gold);
        }

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

        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(19, 87, 169, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(19, 87, 169, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .hero-card-footer {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(234, 191, 17, 0.1);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .corrida-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(218, 37, 29, 0.1);
            border: 1px solid rgba(218, 37, 29, 0.3);
            padding: 12px 18px;
            border-radius: 10px;
            flex: 1;
        }

        .corrida-badge i {
            color: var(--accent-red);
            font-size: 1.5rem;
        }

        .corrida-badge-text {
            font-size: 0.9rem;
        }

        .corrida-badge-text strong {
            display: block;
            color: var(--text-light);
        }

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

        /* Section Styles */
        section {
            padding: 100px 0;
        }

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

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

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

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            background: rgba(19, 87, 169, 0.15);
            color: var(--primary-blue);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 15px;
        }

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

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 650px;
            margin: 0 auto;
        }

        /* Why Choose Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(11, 15, 25, 0.9));
            border: 1px solid rgba(234, 191, 17, 0.1);
            border-radius: 16px;
            padding: 35px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-gold);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            border-color: rgba(234, 191, 17, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

        .benefit-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, rgba(19, 87, 169, 0.2), rgba(19, 87, 169, 0.05));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            border: 1px solid rgba(19, 87, 169, 0.3);
        }

        .benefit-icon i {
            font-size: 1.8rem;
            color: var(--accent-gold);
        }

        .benefit-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

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

        /* Collaboration Types */
        .collab-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .collab-card {
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(11, 15, 25, 0.95));
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(19, 87, 169, 0.2);
            transition: all 0.4s ease;
        }

        .collab-card:hover {
            border-color: rgba(234, 191, 17, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
        }

        .collab-header {
            background: var(--gradient-blue);
            padding: 25px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .collab-card:nth-child(2) .collab-header {
            background: linear-gradient(135deg, #eabf11 0%, #d4a90f 100%);
        }

        .collab-card:nth-child(3) .collab-header {
            background: linear-gradient(135deg, #da251d 0%, #b01e17 100%);
        }

        .collab-card:nth-child(4) .collab-header {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
        }

        .collab-header i {
            font-size: 2rem;
            color: white;
        }

        .collab-header h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
        }

        .collab-body {
            padding: 30px;
        }

        .collab-body p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .collab-features {
            list-style: none;
        }

        .collab-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }

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

        .collab-features li i {
            color: var(--accent-gold);
            margin-top: 3px;
        }

        /* Credentials Section */
        .credentials-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        .credentials-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .credentials-content h2 .highlight {
            color: var(--accent-gold);
        }

        .credentials-content p {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 30px;
        }

        .credential-list {
            list-style: none;
        }

        .credential-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px 0;
            border-bottom: 1px solid rgba(234, 191, 17, 0.1);
        }

        .credential-list li:last-child {
            border-bottom: none;
        }

        .credential-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(234, 191, 17, 0.15), rgba(234, 191, 17, 0.05));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .credential-icon i {
            color: var(--accent-gold);
            font-size: 1.3rem;
        }

        .credential-text strong {
            display: block;
            font-size: 1.05rem;
            margin-bottom: 3px;
        }

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

        .credentials-visual {
            position: relative;
        }

        .credentials-card {
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(11, 15, 25, 0.98));
            border: 1px solid rgba(234, 191, 17, 0.2);
            border-radius: 24px;
            padding: 50px;
            text-align: center;
            position: relative;
        }

        .credentials-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--accent-gold), var(--primary-blue), var(--accent-gold));
            border-radius: 26px;
            z-index: -1;
            opacity: 0.3;
        }

        .review-score {
            font-size: 5rem;
            font-weight: 800;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .review-stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 20px 0;
        }

        .review-stars i {
            color: var(--accent-gold);
            font-size: 1.8rem;
        }

        .review-count {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .review-label {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .review-platforms {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(234, 191, 17, 0.1);
        }

        .review-platforms span {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .review-platforms i {
            font-size: 1.2rem;
        }

        /* Process Section */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold), var(--primary-blue));
            z-index: 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 100px;
            height: 100px;
            background: linear-gradient(145deg, var(--bg-section), var(--bg-dark));
            border: 3px solid var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-gold);
            transition: all 0.4s ease;
        }

        .process-step:hover .step-number {
            border-color: var(--accent-gold);
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(234, 191, 17, 0.3);
        }

        .process-step h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .process-step p {
            color: var(--text-muted);
            font-size: 0.9rem;
            max-width: 200px;
            margin: 0 auto;
        }

        /* FAQ Section */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .faq-item {
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(11, 15, 25, 0.9));
            border: 1px solid rgba(19, 87, 169, 0.2);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(234, 191, 17, 0.3);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(19, 87, 169, 0.1);
        }

        .faq-question i {
            color: var(--accent-gold);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-question h3 {
            font-size: 1.05rem;
            font-weight: 600;
            flex: 1;
        }

        .faq-toggle {
            width: 30px;
            height: 30px;
            background: rgba(19, 87, 169, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .faq-toggle i {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .faq-item.active .faq-toggle {
            background: var(--accent-gold);
            transform: rotate(180deg);
        }

        .faq-item.active .faq-toggle i {
            color: var(--bg-dark);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
        }

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

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 30% 50%, rgba(19, 87, 169, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(234, 191, 17, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 20px;
        }

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

        .cta-subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .btn-whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            font-size: 1.1rem;
            padding: 18px 40px;
        }

        .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
        }

        .btn-email {
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            font-size: 1.1rem;
            padding: 16px 38px;
        }

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

        .cta-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .cta-info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-muted);
        }

        .cta-info-item i {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background: var(--bg-dark);
            padding: 40px 0;
            border-top: 1px solid rgba(234, 191, 17, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-brand {
            font-size: 1.3rem;
            font-weight: 700;
        }

        .footer-brand span {
            color: var(--accent-gold);
        }

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

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

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

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

        /* ===== LA CORRIDA SECTION ===== */
        .corrida-section {
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(11, 15, 25, 0.95));
            border-radius: 25px;
            padding: 50px 30px;
            margin: 0;
            border: 1px solid rgba(234, 191, 17, 0.2);
            position: relative;
            overflow: hidden;
        }

        .corrida-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-red), var(--accent-gold));
        }

        .corrida-section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(218, 37, 29, 0.15);
            color: var(--accent-red);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border: 1px solid rgba(218, 37, 29, 0.3);
        }

        .corrida-section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .corrida-section-title .highlight {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .corrida-section-subtitle {
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 35px;
            line-height: 1.7;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .corrida-gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            border: 2px solid rgba(234, 191, 17, 0.2);
            transition: all 0.4s ease;
        }

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

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

        .corrida-feature {
            background: rgba(19, 87, 169, 0.1);
            padding: 25px 20px;
            border-radius: 16px;
            border: 1px solid rgba(19, 87, 169, 0.2);
            text-align: center;
            transition: all 0.4s ease;
        }

        .corrida-feature:hover {
            transform: translateY(-5px);
            border-color: rgba(234, 191, 17, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .corrida-feature-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--accent-gold);
        }

        .corrida-feature-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 8px;
        }

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

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

        .corrida-video-card {
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(11, 15, 25, 0.98));
            border-radius: 16px;
            padding: 25px;
            border: 1px solid rgba(234, 191, 17, 0.15);
            transition: all 0.4s ease;
            text-align: center;
        }

        .corrida-video-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .corrida-video-card h4 {
            color: var(--text-light);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

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

        .corrida-video-card a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-gold);
            color: var(--bg-dark);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .corrida-video-card a:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(234, 191, 17, 0.3);
        }

        /* ===== VIDEO SECTION ===== */
        .video-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
            background: #000;
            max-width: 800px;
            margin: 0 auto;
            border: 2px solid rgba(234, 191, 17, 0.2);
        }

        .video-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(234, 191, 17, 0.05), rgba(19, 87, 169, 0.05));
            z-index: 1;
            pointer-events: none;
        }

        .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 15px;
            display: block;
            border-radius: 12px;
            border: 1px solid rgba(234, 191, 17, 0.2);
            transition: all 0.3s ease;
        }

        .klarna-badge:hover {
            transform: scale(1.05);
            border-color: var(--accent-gold);
        }

        /* ===== FOOTER LOGO ===== */
        .footer-logo-img {
            height: 40px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .footer-logo-img:hover {
            transform: scale(1.05);
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

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

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-header .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

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

        .site-header .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; }
        }


        .site-header .logo-text {
            color: var(--accent-gold);
            font-size: 1.3rem;
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-subtitle {
                margin: 0 auto 30px;
            }

            .hero-features {
                justify-content: center;
            }

            .hero-cta {
                justify-content: center;
            }

            .credentials-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .credentials-content {
                text-align: center;
            }

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

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

            .process-steps::before {
                display: none;
            }

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

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

            .process-steps {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .cta-info {
                flex-direction: column;
                gap: 15px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-card-footer {
                flex-direction: column;
            }

            /* Corrida Section Responsive */
            .corrida-section {
                padding: 35px 20px;
            }

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

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

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

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

            .footer-brand {
                flex-direction: column;
                gap: 8px;
            }

            .footer-logo-img {
                height: 35px;
            }
        }

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

        .animate-fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
    