/* ═══════════════════════════════════════════════════════════
           CONTENEDOR PRINCIPAL CON MEJOR CENTRADO
           ═══════════════════════════════════════════════════════════ */
        .faq-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 80px 30px;
        }

        /* ═══════════════════════════════════════════════════════════
           HERO PEQUEÑO PARA FAQ
           ═══════════════════════════════════════════════════════════ */
        .hero-small {
            min-height: 400px;
            padding: 120px 20px 80px;
        }

        .hero-small .hero-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-small .hero-subtitle {
            font-size: 1.1rem;
            max-width: 800px;
        }

        /* ═══════════════════════════════════════════════════════════
           ACORDEÓN DE FAQ MEJORADO
           ═══════════════════════════════════════════════════════════ */
        .faq-accordion {
            margin-top: 40px;
        }

        /* ═══════════════════════════════════════════════════════════
           SECCIÓN DE INTRODUCCIÓN CENTRADA
           ═══════════════════════════════════════════════════════════ */
        .faq-intro {
            text-align: center;
            margin-bottom: 50px;
            padding: 30px;
            background: linear-gradient(135deg, rgba(0, 131, 163, 0.03) 0%, rgba(0, 89, 111, 0.03) 100%);
            border-radius: 16px;
            border: 1px solid rgba(0, 131, 163, 0.1);
        }

        .faq-intro h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--text-color, #333);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .faq-intro h2 i {
            color: #0083a3;
            font-size: 1.8rem;
        }

        .faq-intro p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary, #666);
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-intro a {
            color: #0083a3;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }

        .faq-intro a:hover {
            color: #00596f;
            border-bottom-color: #0083a3;
        }

        .faq-accordion-item {
            background: var(--card-bg, #fff);
            border: 2px solid var(--border-color, #e8e9f3);
            border-radius: 14px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .faq-accordion-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 131, 163, 0.15);
            border-color: #0083a3;
        }

        .faq-question {
            width: 100%;
            padding: 18px 22px;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            font-size: 0.97rem;
            font-weight: 600;
            color: var(--text-color, #333);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            gap: 16px;
        }

        .faq-question:hover {
            color: #0083a3;
        }

        .faq-question-content {
            display: flex;
            align-items: center;
            gap: 14px;
            flex: 1;
        }

        .faq-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: linear-gradient(135deg, #0083a3 0%, #00596f 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 131, 163, 0.25);
        }

        .faq-accordion-item:hover .faq-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .faq-question-text {
            flex: 1;
        }

        .faq-toggle-icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
            background: rgba(0, 131, 163, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .faq-toggle-icon i {
            font-size: 0.85rem;
            transition: transform 0.3s ease;
            color: #0083a3;
        }

        .faq-question.active .faq-toggle-icon {
            background: #0083a3;
        }

        .faq-question.active .faq-toggle-icon i {
            transform: rotate(180deg);
            color: white;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 22px 0 76px;
        }

        .faq-answer.open {
            padding: 0 22px 18px 76px;
        }

        .faq-answer p {
            margin: 0 0 12px 0;
            line-height: 1.8;
            color: var(--text-secondary, #666);
            font-size: 0.95rem;
            font-weight: 400;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-answer ul {
            margin: 15px 0;
            padding-left: 25px;
            list-style: none;
        }

        .faq-answer li {
            margin: 8px 0;
            line-height: 1.7;
            color: var(--text-secondary, #666);
            font-size: 0.95rem;
            font-weight: 400;
            position: relative;
            padding-left: 0;
        }

        .faq-answer li::before {
            content: "▸";
            color: #0083a3;
            font-weight: bold;
            display: inline-block;
            width: 1.2em;
            margin-left: -1.2em;
            margin-right: 0.2em;
        }

        .faq-answer strong {
            color: #0083a3;
            font-weight: 600;
        }

        /* Asegurar que los checkmarks se vean igual */
        .faq-answer li:has(::before) {
            padding-left: 0;
        }

        /* ═══════════════════════════════════════════════════════════
           SECCIÓN "AÚN TIENES DUDAS" MEJORADA
           ═══════════════════════════════════════════════════════════ */
        .faq-contact-section {
            margin-top: 80px;
            text-align: center;
            padding: 50px 40px;
            background: linear-gradient(135deg, rgba(0, 131, 163, 0.05) 0%, rgba(0, 89, 111, 0.05) 100%);
            border-radius: 20px;
            border: 2px solid rgba(0, 131, 163, 0.1);
        }

        .faq-contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0083a3 0%, #00596f 100%);
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin-bottom: 25px;
            box-shadow: 0 8px 20px rgba(0, 131, 163, 0.3);
        }

        .faq-contact-section h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: var(--text-color, #333);
        }

        .faq-contact-section p {
            font-size: 1.15rem;
            color: var(--text-secondary, #666);
            margin-bottom: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .faq-contact-info {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
            margin: 30px 0;
        }

        .faq-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 25px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .faq-contact-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 131, 163, 0.2);
        }

        .faq-contact-item i {
            font-size: 1.3rem;
            color: #0083a3;
        }

        .faq-contact-item a {
            color: var(--text-color, #333);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .faq-contact-item a:hover {
            color: #0083a3;
        }

        .faq-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 40px;
            background: linear-gradient(135deg, #0083a3 0%, #00596f 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 131, 163, 0.3);
            margin-top: 15px;
        }

        .faq-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 131, 163, 0.4);
        }

        .faq-cta-button i {
            font-size: 1.2rem;
        }

        /* ═══════════════════════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════════════════════ */
        @media (max-width: 768px) {
            .faq-container {
                padding: 60px 20px;
            }

            .hero-small {
                min-height: 350px;
                padding: 100px 20px 60px;
            }

            .hero-small .hero-title {
                font-size: 2rem;
            }

            .hero-small .hero-subtitle {
                font-size: 1.05rem;
            }

            .faq-intro {
                padding: 25px 20px;
                margin-bottom: 40px;
            }

            .faq-intro h2 {
                font-size: 1.6rem;
            }

            .faq-intro h2 i {
                font-size: 1.5rem;
            }

            .faq-intro p {
                font-size: 1rem;
            }

            .faq-question {
                font-size: 1.05rem;
                padding: 22px 20px;
            }

            .faq-question-content {
                gap: 15px;
            }

            .faq-icon {
                width: 45px;
                height: 45px;
                min-width: 45px;
                font-size: 1.3rem;
                border-radius: 12px;
            }

            .faq-toggle-icon {
                width: 32px;
                height: 32px;
                min-width: 32px;
            }

            .faq-answer {
                padding: 0 20px 0 80px;
            }

            .faq-answer.open {
                padding: 0 20px 22px 80px;
            }

            .faq-answer p {
                font-size: 1rem;
            }

            .faq-contact-section {
                padding: 40px 25px;
                margin-top: 60px;
            }

            .faq-contact-section h2 {
                font-size: 1.8rem;
            }

            .faq-contact-section p {
                font-size: 1.05rem;
            }

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

            .faq-contact-item {
                width: 100%;
                justify-content: center;
            }

            .faq-cta-button {
                width: 100%;
                justify-content: center;
            }
        }

        /* ═══════════════════════════════════════════════════════════
           BOTÓN SUBIR
           ═══════════════════════════════════════════════════════════ */
        #btn-up {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-primary, #0083a3);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 131, 163, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        #btn-up:hover {
            background: var(--accent-hover, #00596f);
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 131, 163, 0.4);
        }

        #btn-up svg {
            width: 24px;
            height: 24px;
        }

        @media (max-width: 480px) {
            #btn-up {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
            }

            #btn-up svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 480px) {
            .faq-answer {
                padding: 0 20px;
            }

            .faq-answer.open {
                padding: 0 20px 20px 20px;
            }
        }

        /* ═══════════════════════════════════════════════════════════
           FORZAR COLORES OSCUROS EN FAQ (fondo siempre blanco)
           ═══════════════════════════════════════════════════════════ */
        
        /* Forzar texto oscuro en preguntas */
        .faq-question,
        .faq-question-text {
            color: #333 !important;
        }
        
        /* Forzar texto oscuro en respuestas */
        .faq-answer,
        .faq-answer p,
        .faq-answer li,
        .faq-answer * {
            color: #666 !important;
        }
        
        .faq-answer strong {
            color: #0083a3 !important;
        }
        
        /* Forzar fondo blanco en items FAQ */
        .faq-accordion-item {
            background: #fff !important;
        }
        
        /* Forzar texto oscuro en intro */
        .faq-intro h2 {
            color: #333 !important;
        }
        
        .faq-intro p {
            color: #666 !important;
        }
        
        /* Forzar texto oscuro en sección de contacto */
        .faq-contact-section h2 {
            color: #333 !important;
        }
        
        .faq-contact-section p {
            color: #666 !important;
        }
        
        .faq-contact-item {
            background: white !important;
        }
        
        .faq-contact-item a {
            color: #333 !important;
        }