/* ============================================================================
   Estilos de la página Día de la Bicicleta 2026.
   Replica de pages/dia-bicicleta-2025.css sin la regla .form-section-hidden
   (en 2026 el formulario está activo por defecto).
   ============================================================================ */


        body {

        }

        .dia-bicicleta-hero {
            background: linear-gradient(135deg, #ff6b6b, #feca57, #48cae4);
            min-height: 60vh;
            position: relative;
            overflow: hidden;
        }

        .dia-bicicleta-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .hero-content-dia {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 6rem 0 4rem 0;
        }

        .hero-title-dia {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            color: white;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
        }

        .hero-subtitle-dia {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Cuenta atrás del hero */
        .hero-countdown {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 1rem;
            padding: 1.25rem 1.75rem;
            margin: 1.25rem auto 1.5rem;
            max-width: 560px;
            color: white;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }

        .countdown-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.9;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .countdown-grid {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 0.85rem;
        }

        .countdown-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 56px;
        }

        .countdown-number {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
            font-variant-numeric: tabular-nums;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
        }

        .countdown-text {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.85;
            margin-top: 0.25rem;
            font-weight: 600;
        }

        .countdown-date {
            font-size: 0.95rem;
            font-weight: 600;
            opacity: 0.95;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(255, 255, 255, 0.25);
        }

        .event-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 1rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            margin: 2rem auto;
            display: block;
        }

        .info-section {
            background: white;
            border-radius: 1rem;
            padding: 2.5rem 3rem 1.5rem;
            margin: -4rem auto 0;
            position: relative;
            z-index: 10;
            box-shadow: var(--shadow-lg);
            max-width: 1000px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .info-card {
            background: #f8fafc;
            border-radius: 0.75rem;
            padding: 1.5rem;
            text-align: center;
            border-left: 4px solid #ff6b6b;
        }

        .info-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .info-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--cycling-dark);
            margin-bottom: 0.5rem;
        }

        .info-description {
            color: var(--cycling-muted);
            font-size: 0.875rem;
        }

        .form-section {
            background: #f8fafc;
            padding: 1rem 0 3rem;
        }

        .form-container {
            background: white;
            border-radius: 1rem;
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            max-width: 800px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-weight: 600;
            color: var(--cycling-dark);
            margin-bottom: 0.5rem;
        }

        .form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: var(--transition);
            box-sizing: border-box;
        }

        .form-input:focus {
            outline: none;
            border-color: #ff6b6b;
            box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
        }

        .form-select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 0.5rem;
            font-size: 1rem;
            background: white;
            transition: var(--transition);
            box-sizing: border-box;
        }

        .form-select:focus {
            outline: none;
            border-color: #ff6b6b;
            box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .form-checkbox input[type="checkbox"] {
            margin-top: 0.25rem;
            accent-color: #ff6b6b;
        }

        .form-footer {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 1.25rem;
            margin-top: 1.5rem;
        }

        /* Override global .form-checkbox { width: 18px; height: 18px } (pensado para el input)
           cuando se usa como wrapper dentro de .form-footer. */
        .form-footer .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            width: 100%;
            height: auto;
            margin: 0;
            box-sizing: border-box;
        }

        .form-footer .form-checkbox input[type="checkbox"] {
            flex-shrink: 0;
            margin-top: 0.25rem;
            accent-color: #ff6b6b;
        }

        .form-footer .form-checkbox label {
            flex: 1;
            min-width: 0;
            line-height: 1.5;
        }

        .form-footer .btn-dia-bicicleta {
            width: 100%;
        }

        .btn-dia-bicicleta {
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }

        .btn-dia-bicicleta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }

        .btn-cta-hero {
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.25rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 1rem 0 2rem 0;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-cta-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
            background: linear-gradient(135deg, #ff5252, #ffc107);
        }

        .required {
            color: #ff6b6b;
        }

        .event-details {
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            color: white;
            border-radius: 1rem;
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
        }

        .event-details h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: white;
        }

        .event-details p {
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .event-details p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .hero-content-dia {
                padding: 4rem 0 3rem 0;
            }

            .hero-title-dia {
                font-size: 2.5rem;
            }

            .hero-subtitle-dia {
                font-size: 1.125rem;
            }

            .btn-cta-hero {
                font-size: 1.125rem;
                padding: 0.875rem 2rem;
            }

            .hero-countdown {
                padding: 1rem 1.25rem;
                max-width: 95%;
            }

            .countdown-grid {
                gap: 0.85rem;
            }

            .countdown-unit {
                min-width: 44px;
            }

            .countdown-number {
                font-size: 1.85rem;
            }

            .countdown-text {
                font-size: 0.65rem;
            }

            .countdown-date {
                font-size: 0.85rem;
            }

            .info-section {
                margin: -2rem 1rem 2rem;
                padding: 2rem;
            }

            .form-container {
                margin: 0 1rem;
                padding: 2rem;
            }
        }
    
