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


        /* Hero Section */
        .hero-training-camp {
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
            overflow: hidden;
            padding: 6rem 2rem 4rem;
        }
        
        .hero-training-camp::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('assets/calpe.jpg') center/cover no-repeat;
            z-index: -1;
        }
        
        .hero-training-camp-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
            color: white;
        }
        
        .hero-training-camp-content h1 {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            text-transform: uppercase;
            text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
            color: white;
        }
        
        .hero-training-camp-content p {
            font-size: clamp(1.1rem, 3vw, 1.4rem);
            margin-bottom: 1.5rem;
            opacity: 0.95;
            line-height: 1.6;
            color: white;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            font-weight: 700;
            border: 2px solid rgba(255, 255, 255, 0.3);
            margin-bottom: 1.5rem;
            color: white;
        }
        
        /* Info Section */
        .info-section {
            padding: 4rem 0;
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .info-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
        
        .info-card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .info-card h3 {
            color: #b73434;
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
        }
        
        .info-card p {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
        }
        
        /* Form Section */
        .form-section {
            padding: 4rem 0;
            background: white;
        }
        
        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: #f8f9fa;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        .form-header h2 {
            color: #b73434;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .form-header p {
            color: #666;
            font-size: 1.1rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }
        
        .form-group label .required {
            color: #e74c3c;
            margin-left: 0.25rem;
        }
        
        .form-group input[type="text"],
        .form-group input[type="tel"] {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s;
            background: white;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #b73434;
            box-shadow: 0 0 0 4px rgba(183, 52, 52, 0.1);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        /* Radio Groups */
        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .radio-option {
            position: relative;
            display: flex;
            align-items: flex-start;
            padding: 1rem 1.25rem;
            background: white;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .radio-option:hover {
            border-color: #b73434;
            background: #fdf5f5;
        }
        
        .radio-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }
        
        .radio-option input[type="radio"]:checked + .radio-content {
            color: #b73434;
        }
        
        .radio-option:has(input:checked) {
            border-color: #b73434;
            background: rgba(183, 52, 52, 0.05);
        }
        
        .radio-content {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            width: 100%;
        }
        
        .radio-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .radio-text h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: #333;
        }
        
        .radio-text p {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
            line-height: 1.4;
        }
        
        .radio-checkmark {
            width: 22px;
            height: 22px;
            border: 2px solid #ccc;
            border-radius: 50%;
            margin-left: auto;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .radio-option:has(input:checked) .radio-checkmark {
            border-color: #b73434;
            background: #b73434;
        }
        
        .radio-option:has(input:checked) .radio-checkmark::after {
            content: '✓';
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        /* Presupuesto options */
        .budget-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 0.75rem;
        }
        
        .budget-option {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            background: white;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        
        .budget-option:hover {
            border-color: #b73434;
            background: #fdf5f5;
        }
        
        .budget-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }
        
        .budget-option:has(input:checked) {
            border-color: #b73434;
            background: rgba(183, 52, 52, 0.1);
        }
        
        .budget-option span {
            font-weight: 600;
            color: #333;
            font-size: 1rem;
        }
        
        .budget-option:has(input:checked) span {
            color: #b73434;
        }
        
        /* Bike type options */
        .bike-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        @media (max-width: 500px) {
            .bike-options {
                grid-template-columns: 1fr;
            }
        }
        
        .bike-option {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem;
            background: white;
            border: 2px solid #e1e5e9;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        
        .bike-option:hover {
            border-color: #b73434;
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .bike-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }
        
        .bike-option:has(input:checked) {
            border-color: #b73434;
            background: rgba(183, 52, 52, 0.08);
        }
        
        .bike-option .bike-icon {
            font-size: 3rem;
            margin-bottom: 0.75rem;
        }
        
        .bike-option .bike-label {
            font-weight: 600;
            color: #333;
            font-size: 1.1rem;
        }
        
        .bike-option:has(input:checked) .bike-label {
            color: #b73434;
        }
        
        /* Submit Button */
        .btn-submit {
            width: 100%;
            padding: 1.25rem 2rem;
            background: linear-gradient(135deg, #b73434 0%, #8b0000 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(183, 52, 52, 0.4);
        }
        
        .btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }
        
        /* Privacy note */
        .privacy-note {
            text-align: center;
            margin-top: 1.5rem;
            padding: 1rem;
            background: rgba(44, 90, 160, 0.05);
            border-radius: 8px;
            font-size: 0.9rem;
            color: #666;
        }
        
        .privacy-note strong {
            color: #b73434;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-training-camp {
                padding: 5rem 1rem 3rem;
                min-height: 350px;
            }
            
            .form-container {
                padding: 2rem 1.5rem;
                margin: 0 1rem;
            }
            
            .info-section {
                padding: 3rem 1rem;
            }
            
            .form-section {
                padding: 3rem 0;
            }
        }
        
        @media (max-width: 480px) {
            .hero-training-camp {
                padding: 4rem 1rem 2.5rem;
                min-height: 300px;
            }
            
            .form-container {
                padding: 1.5rem 1rem;
            }
            
            .budget-options {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    