﻿/* ============================================================================
   Estilos extraídos de tracks-machacacha-2026.html (P0.2 cleanup)
   Movidos del <style> inline al external stylesheet el 2026-08-16.
   ============================================================================ */


        .hero-tracks {
            background: linear-gradient(135deg, #b73434 0%, #8b0000 50%, #dc2626 100%);
            color: #ffffff;
            text-align: center;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }
        .hero-tracks::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('assets/images/banners/hero-carretera.jpg') center/cover no-repeat;
            opacity: 0.15;
            pointer-events: none;
        }
        .hero-tracks .container {
            position: relative;
            z-index: 2;
        }
        .hero-tracks .hero-title-tracks {
            font-family: 'MMA Champ', 'Bebas Neue', 'Oswald', sans-serif;
            font-weight: normal;
            font-size: clamp(2.5rem, 7vw, 4rem);
            letter-spacing: 3px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
            margin-bottom: 0.5rem;
            color: #ffffff !important;
            text-transform: uppercase;
            line-height: 1.1;
        }
        .hero-tracks .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            font-weight: 600;
            color: #ffffff !important;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .tracks-section {
            padding: 4rem 0;
            background: #f8fafc;
        }
        .tracks-section .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
        }
        .tracks-section .section-title::after {
            content: '';
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #b73434, #8b0000);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .tracks-intro {
            text-align: center;
            color: #64748b;
            max-width: 640px;
            margin: 2rem auto 2.5rem;
            font-size: 1.05rem;
            line-height: 1.6;
        }
        .tracks-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.5rem;
            max-width: 720px;
            margin: 0 auto;
        }
        .track-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            min-width: 0;
        }
        .track-card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 0.75rem 0;
        }
        .track-card p {
            font-size: 0.95rem;
            color: #64748b;
            margin: 0 0 1.25rem 0;
            line-height: 1.5;
        }
        .track-card .btn-download-track {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            background: linear-gradient(135deg, #b73434 0%, #8b0000 100%);
            color: #ffffff;
            padding: 1rem 1.25rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(183, 52, 52, 0.35);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .track-card .btn-download-track:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(183, 52, 52, 0.45);
            color: #ffffff;
        }
        .cta-inscripciones {
            background: linear-gradient(135deg, #b73434 0%, #8b0000 100%);
            padding: 3.5rem 2rem;
            text-align: center;
        }
        .cta-inscripciones h2 {
            font-size: clamp(1.5rem, 4vw, 2rem);
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 0.75rem 0;
        }
        .cta-inscripciones p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.05rem;
            margin: 0 0 1.5rem 0;
        }
        .cta-inscripciones .btn-inscribirme {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #ffffff;
            color: #b73434;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        .cta-inscripciones .btn-inscribirme:hover {
            background: #f8f9fa;
            transform: translateY(-3px);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
        }
        @media (max-width: 768px) {
            .hero-tracks { padding: 3rem 1.5rem; }
            .tracks-section { padding: 3rem 0; }
            .tracks-grid {
                grid-template-columns: 1fr;
                max-width: 420px;
            }
            .track-card { padding: 1.5rem 1.25rem; }
        }
        @media (max-width: 480px) {
            .hero-tracks { padding: 2rem 1rem; }
            .hero-tracks .hero-title-tracks { letter-spacing: 1px; }
            .tracks-section { padding: 2rem 0; }
            .tracks-section .section-title { font-size: 1.5rem; }
            .tracks-intro { font-size: 0.95rem; margin: 1.5rem auto 2rem; }
            .cta-inscripciones { padding: 2rem 1rem; }
            .cta-inscripciones .btn-inscribirme {
                padding: 0.85rem 1.5rem;
                font-size: 1rem;
                width: 100%;
                max-width: 320px;
                justify-content: center;
            }
        }
    
