/* Perguntas Frequentes */
* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Poppins', sans-serif; color: #333; line-height: 1.6; }
        :root {
            --primary-teal: #1a9b8e;
            --primary-dark: #1a3a47;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --text-dark: #2c3e50;
        }

        /* HERO */
        .hero {
            background: url('/uploads/banner-internas.webp') right center/cover no-repeat;
            color: var(--white);
            padding: 0 2rem;
            height: 350px;
            display: flex;
            align-items: center;
        }
        .hero-container { max-width: 1200px; margin: 0 auto; width: 100%; }
        .hero-content h1 { font-size: 2rem; font-weight: 700; line-height: 1.2; }
        .hero-content p { font-size: 1rem; color: #d0d8dd; margin-top: 1rem; max-width: 600px; }

        /* FAQ */
        .faq-section {
            padding: 5rem 2rem;
            background-color: var(--light-gray);
        }
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-intro {
            text-align: center;
            margin-bottom: 3rem;
        }
        .faq-intro h2 {
            font-size: 1.8rem;
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .faq-intro p {
            color: var(--text-dark);
            font-size: 1rem;
            line-height: 1.8;
        }

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .accordion-item {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: box-shadow 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
            border: none;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-dark);
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            text-align: left;
            gap: 1rem;
        }

        .accordion-header:hover { background-color: var(--light-gray); }

        .accordion-icon {
            font-size: 1.5rem;
            color: var(--primary-teal);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
        }

        .accordion-content p {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: #555;
            font-size: 0.95rem;
            line-height: 1.9;
            border-top: 1px solid #f0f0f0;
            padding-top: 1rem;
        }

        /* CTA */
        .cta-final {
            padding: 6rem 2rem;
            text-align: center;
            background-color: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 300px;
        }

        .cta-final h2 {
            margin-bottom: 1rem;
            color: var(--primary-dark);
            font-size: 2rem;
            font-weight: 700;
        }

        .cta-final p {
            color: var(--text-dark);
            font-size: 1rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .cta-final-botao {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-final-botao:hover {
            background-color: var(--primary-teal);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26,155,142,0.3);
        }

        @media (max-width: 768px) {
            .hero {
                background: url('/uploads/banner-mobile-internas.webp') center/cover no-repeat !important;
                height: 280px;
            }
            .hero-content h1 { font-size: 1.5rem; }
            .faq-section { padding: 2rem 1rem; }
            .accordion-header { font-size: 0.9rem; padding: 1.2rem; }
        }
        @media (max-width: 480px) {
            .hero { height: 220px; padding: 0 1rem; }
            .hero-content h1 { font-size: 1.2rem; }
        }
