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


        /* Estilos específicos para FAQs */
        .faq-item {
            border: 1px solid var(--cycling-accent);
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }
        
        .faq-question {
            width: 100%;
            padding: 1.5rem;
            background: white;
            border: none;
            text-align: left;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--cycling-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background: var(--cycling-light);
        }
        
        .faq-question.active {
            background: var(--cycling-light);
            color: var(--cycling-blue);
        }
        
        .faq-icon {
            font-size: 1.25rem;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 1rem 1.5rem 1.5rem;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: var(--cycling-muted);
            line-height: 1.6;
            margin: 0;
        }
        
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .contact-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }
        
        .contact-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
        }
        
        .contact-card .contact-icon {
            width: 3rem;
            height: 3rem;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, var(--cycling-primary), var(--cycling-secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        /* Estilos para el banner de FAQs */
        .hero-faqs .hero-background {
            background-image: url('assets/images/heroes/faqs-hero.jpg');
            background-size: cover;
            background-position: center bottom;
            background-repeat: no-repeat;
            background-attachment: fixed;
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 1;
        }
        
        .hero-faqs .hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(221, 47, 47, 0.7) 0%, rgba(49, 34, 34, 0.7) 100%);
            z-index: 2;
        }
        
        .hero-faqs .hero-content {
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        /* Responsive para el hero de FAQs */
        
        /* Pantallas grandes */
        @media (min-width: 1200px) {
            .hero-faqs {
                min-height: 65vh !important;
            }
            
            .hero-faqs .hero-background {
                background-position: center bottom;
            }
        }
        
        /* Pantallas medianas */
        @media (min-width: 769px) and (max-width: 1199px) {
            .hero-faqs {
                min-height: 60vh !important;
            }
            
            .hero-faqs .hero-background {
                background-position: center bottom;
            }
        }
        
        /* Móviles */
        @media (max-width: 768px) {
            .hero-faqs {
                min-height: 50vh !important;
            }
            
            .hero-faqs .hero-background {
                background-position: left bottom;
                background-attachment: scroll;
            }
            
            .hero-faqs .hero-overlay {
                background: linear-gradient(135deg, rgba(221, 47, 47, 0.8) 0%, rgba(49, 34, 34, 0.8) 100%);
            }
        }
        
        /* Responsive para títulos FAQ */
        @media (max-width: 768px) {
            .faq-question {
                font-size: 1rem;
                padding: 1.25rem;
            }
        }
    
