      :root {
            --background: 0 0% 100%;
            --foreground: 222.2 84% 4.9%;
            --primary: 201 96% 32%;
            --primary-foreground: 210 40% 98%;
            --secondary: 210 40% 96.1%;
            --muted: 210 40% 96.1%;
            --muted-foreground: 215.4 16.3% 46.9%;
            --border: 214.3 31.8% 91.4%;
            --radius: 0.75rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }
        
        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid transparent;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* Modo claro: botão primário azul escuro */
        :not([data-theme="dark"]) button.btn.btn-primary,
        :not([data-theme="dark"]) a.btn.btn-primary,
        :not([data-theme="dark"]) input.btn.btn-primary,
        :not([data-theme="dark"]) .btn.btn-primary {
            background-color: #0369A0 !important;
            color: #fff !important;
            border: 1.5px solid #0ea5e9 !important;
        }
        
        /* Modo claro: hover azul claro */
        :not([data-theme="dark"]) button.btn.btn-primary:hover,
        :not([data-theme="dark"]) a.btn.btn-primary:hover,
        :not([data-theme="dark"]) input.btn.btn-primary:hover,
        :not([data-theme="dark"]) .btn.btn-primary:hover {
            background-color: #38bdf8 !important;
            color: #fff !important;
            border-color: #0ea5e9 !important;
        }
        
        /* Modo escuro: mantém azul claro como normal */
        [data-theme="dark"] button.btn.btn-primary,
        [data-theme="dark"] a.btn.btn-primary,
        [data-theme="dark"] input.btn.btn-primary,
        [data-theme="dark"] .btn.btn-primary {
            background-color: #38bdf8 !important;
            color: #fff !important;
            border: 1.5px solid #0ea5e9 !important;
        }
        
        /* Modo escuro: hover azul escuro */
        [data-theme="dark"] button.btn.btn-primary:hover,
        [data-theme="dark"] a.btn.btn-primary:hover,
        [data-theme="dark"] input.btn.btn-primary:hover,
        [data-theme="dark"] .btn.btn-primary:hover {
            background-color: #0369A0 !important;
            color: #fff !important;
            border-color: #025b8c !important;
        }
        
        .btn-outline {
            background-color: transparent;
            border-color: hsl(var(--muted-foreground));
            color: hsl(var(--foreground));
        }
        
        .btn-outline:hover {
            background-color: hsl(var(--muted));
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        #languageSwitcher {
        background-color: transparent;
        border: 1px solid hsl(var(--primary));
        border-radius: var(--radius);
        padding: 0.5rem 1rem;
        font-size: 0.875rem; /* text-sm */
        color: hsl(var(--foreground));
        cursor: pointer;
        transition: all 0.3s;
        }

        #languageSwitcher:focus {
        outline: none;
        border-color: hsl(var(--primary));
        box-shadow: 0 0 0 2px hsl(var(--primary)/0.3);
        }

        @media (max-width: 1024px) {
        #languageSwitcher {
            max-width: 120px;
            font-size: 0.75rem;
            padding: 0.25rem 0.5rem;
        }
        }

        @media (max-width: 820px) {
        #languageSwitcher {
            display: block;
            width: 100%;
            margin-top: 0.5rem;
            order: 2;
        }
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Por padrão, botão por último */
        .cta-buttons {
            margin: 0;
            padding: 0;
            order: 5; /* ou o maior número da quantidade de itens */
        }

        /* Para telas pequenas: botão primeiro */
        @media (max-width: 768px) {
            .nav-links {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-buttons {
                margin: 0;
                padding: 0;
                order: -1; /* faz ele aparecer primeiro */
                
            }
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            border-color: hsl(var(--border));
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

    /* Header Styles */
    #container header-container {
        background-color: hsl(var(--background));
        color: hsl(var(--foreground));
    }

    header {
        background-color: hsl(var(--background));
        color: hsl(var(--foreground));
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: relative; /* alterado de fixed para relative */
        width: 100%;
        top: 0;
        z-index: 100;
        max-width: 100vw; /* impede que o header ultrapasse a largura da tela */
        overflow-x: hidden; /* previne estouro horizontal */
    }

                #toggleDarkMode {
                background: hsl(var(--background));
                border: 2px solid #38bdf8;
                color: #0ea5e9;
                transition: background 0.3s, color 0.3s, border 0.3s;
                z-index: 10001 !important;
                position: relative !important;
            }
            #toggleDarkMode:hover {
                background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
                color: #fff;
                border-color: #0ea5e9;
                   .fa-moon {
                color: #fff;
                      }
            }
            #toggleDarkMode .fa-sun {
                color: #fff;
            }
            #toggleDarkMode .fa-moon {
                
                color: #0ea5e9;
            }


        .header-container {
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            position: relative;
            flex-wrap: wrap;
        }


        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(to right, hsl(201, 96%, 60%), hsl(201, 96%, 45%));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: all 0.3s;
            z-index: 101;
        }

        .logo:hover {
            opacity: 0.8;
        }

.btn {
    display: inline-block;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.btn-primary {
  background-color: #0369A0;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background 0.3s;
}
.btn-primary:hover {
  background-color: #025b8c;
}


     /* Menu Toggle - Sempre visível, mas só funcional em mobile */
     .menu-toggle {
            display: block !important;
            background: none !important;
            border: none !important;
            color: hsl(var(--primary)) !important;
            font-size: 1.5rem !important;
            cursor: pointer !important;
            padding: 0.5rem !important;
            transition: all 0.3s ease !important;
            z-index: 1001 !important;
            position: relative !important;
            width: auto !important;
            height: auto !important;
        }

        .menu-toggle:hover {
            color: hsl(var(--primary-light)) !important;
            transform: scale(1.1) !important;
        }

        .menu-toggle:focus {
            outline: 2px solid hsl(var(--primary)) !important;
            outline-offset: 2px !important;
        }

        .menu-toggle i {
            display: inline-block !important;
            font-size: 1.5rem !important;
            color: hsl(var(--primary)) !important;
        }

        /* Debug - Força visibilidade do menu hambúrguer */
        .debug-menu {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            position: relative !important;
            z-index: 9999 !important;
        }

        .debug-menu i {
            display: inline-block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

        /* Navegação Desktop */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
        }

        .nav-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .cta-buttons {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            /* Header e Navegação */
            .header-container {
                padding: 0.75rem 1rem;
                flex-wrap: wrap;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: hsl(var(--background));
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                gap: 0;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
                transition: right 0.3s ease;
                z-index: 1000;
                padding: 5rem 2rem 2rem 2rem;
                overflow-y: auto;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: 0;
                margin-bottom: 2rem;
            }

            .nav-menu a {
                width: 100%;
                padding: 1rem 0;
                border-bottom: 1px solid hsl(var(--border));
                font-size: 1.1rem;
                font-weight: 600;
                text-decoration: none;
                color: hsl(var(--foreground));
                transition: all 0.3s ease;
            }

            .nav-menu a:last-child {
                border-bottom: none;
            }

            .nav-menu a:hover {
                color: hsl(var(--primary));
                background-color: hsl(var(--muted));
                padding-left: 1rem;
            }

            .nav-controls {
                flex-direction: column;
                width: 100%;
                gap: 1rem;
                margin-bottom: 2rem;
                padding: 1rem 0;
                border-bottom: 1px solid hsl(var(--border));
            }

            .cta-buttons {
                margin: 0;
                padding: 0;
                width: 100%;
                flex-direction: column;
                gap: 1rem;
            }

            .btn {
                width: 100%;
                justify-content: center;
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
            }

            /* Esconde elementos em desktop quando em mobile */
            .nav-links .nav-menu,
            .nav-links .nav-controls,
            .nav-links .cta-buttons {
                display: flex;
            }

            /* Hero Section */
            .hero {
                padding: 6rem 0 4rem;
            }

            .hero h1 {
                font-size: 2rem;
                line-height: 1.3;
                margin-bottom: 1.5rem;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
                padding: 0 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                padding: 0 1rem;
            }

            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
                padding: 1rem 1.5rem;
                font-size: 1.1rem;
            }

            /* Features Section */
            .features {
                padding: 3rem 0;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .feature-card {
                padding: 1.5rem;
                text-align: center;
            }

            .feature-card h3 {
                font-size: 1.25rem;
                margin-bottom: 1rem;
            }

            .feature-card p {
                font-size: 1rem;
                line-height: 1.6;
            }

            /* Testimonials Section */
            .testimonials {
                padding: 3rem 0;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .testimonial-card p {
                font-size: 1rem;
                line-height: 1.6;
            }

            /* Pricing Section */
            .pricing {
                padding: 3rem 0;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .pricing-card {
                padding: 1.5rem;
            }

            .pricing-card h3 {
                font-size: 1.25rem;
            }

            .price {
                font-size: 1.5rem;
            }

            /* FAQ Section */
            .faq {
                padding: 3rem 0;
            }

            .faq-container {
                padding: 0 1rem;
            }

            .faq-question {
                font-size: 1.1rem;
                padding: 1rem;
            }

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

            /* Section Headers */
            .section-header {
                margin-bottom: 2.5rem;
                padding: 0 1rem;
            }

            .section-header h2 {
                font-size: 1.75rem;
                margin-bottom: 1rem;
            }

            .section-header p {
                font-size: 1rem;
                line-height: 1.6;
            }

            /* Footer */
            footer {
                padding: 2rem 1rem;
            }

            footer .grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            /* Feedback Section */
            #feedback {
                padding: 0 1rem;
                margin-bottom: 2rem;
            }

            #feedback .max-w-2xl {
                max-width: 100%;
            }

            #feedback form {
                padding: 1.5rem;
            }

            /* Modal */
            #downloadModal .max-w-md {
                max-width: 90%;
                margin: 1rem;
            }

            #downloadModal .grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            /* WhatsApp Button */
            .whatsapp-button {
                bottom: 1rem;
                right: 1rem;
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            /* Font Size Controls */
            .js-increase-font-size,
            .js-decrease-font-size {
                width: 35px;
                height: 35px;
                font-size: 1.25rem;
                right: 0.75rem;
                top: 35%;
            }

            /* Language Switcher */
            #languageSwitcher {
                max-width: 100px;
                font-size: 0.75rem;
                padding: 0.5rem 0.75rem;
            }

            .nav-links {
                z-index: 10000 !important;
            }
        }

        /* Desktop - Esconde menu toggle e mostra navegação normal */
        @media (min-width: 769px) {
            .menu-toggle {
                display: none !important;
            }

            .nav-links {
                position: static;
                width: auto;
                height: auto;
                background-color: transparent;
                flex-direction: row;
                align-items: center;
                justify-content: flex-end;
                gap: 2rem;
                box-shadow: none;
                padding: 0;
                overflow: visible;
            }

            .nav-menu {
                display: flex;
                gap: 2rem;
            }

            .nav-menu a {
                padding: 0.5rem 0;
                border-bottom: none;
                font-size: 1rem;
                font-weight: 500;
            }

            .nav-menu a:hover {
                padding-left: 0;
            }

            .nav-controls {
                flex-direction: row;
                width: auto;
                gap: 1rem;
                margin-bottom: 0;
                padding: 0;
                border-bottom: none;
            }

            .cta-buttons {
                flex-direction: row;
                width: auto;
                gap: 1rem;
            }

            .btn {
                width: auto;
                padding: 0.75rem 1.5rem;
                font-size: 1rem;
            }
        }

        .nav-links a {
            text-decoration: none;
            color: hsl(var(--foreground));
            font-weight: 500;
            transition: all 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }

        .nav-links a:hover {
            color: hsl(var(--primary));
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-buttons {
            margin: 0;
            padding: 0;
            display: flex;
            gap: 1rem;
        }

        /* Ajustes de altura para telas pequenas */
        html, body {
            margin: 0;
            padding: 0;
            height: 100%;
        }

        .full-screen {
            width: 100vw;
            height: 100vh;
        }

        /* Suaviza os elementos decorativos */
        .decorativo {
            opacity: 0.1;
            background-color: white;
            border-radius: 9999px;
        }

         /* Tablets */
         @media (min-width: 769px) and (max-width: 1024px) {
            .hero h1 {
                font-size: 2.25rem;
            }

            .hero p {
                font-size: 1.15rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        /* Telas muito pequenas */
        @media (max-width: 480px) {
            .hero {
                padding: 5rem 0 3rem;
            }

            .hero h1 {
                font-size: 1.75rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .nav-links {
                width: 100%;
                right: -100%;
            }

            .header-container {
                padding: 0.5rem 1rem;
            }

            .logo {
                font-size: 1.25rem;
            }

            .logo img {
                width: 2rem;
            }
        }

        .btn {
            padding: 0.5rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid transparent;
            transform: translateY(0);
        }

        .btn-primary {
            background-color: hsl(var(--primary));
            color: hsl(var(--primary-foreground));
        }

        .btn-primary:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-outline {
            background-color: transparent;
            border-color: hsl(var(--primary));
            color: hsl(var(--primary));
        }

        .btn-outline:hover {
            background-color: hsl(var(--primary)/0.1);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Hero Section */
        .hero {
            padding: 14rem 0 10rem;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero h1 .heal-text {
            background: linear-gradient(to right, hsl(201, 96%, 60%), hsl(201, 96%, 45%));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero p {
            font-size: 1.25rem;
            color: hsl(var(--muted-foreground));
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid transparent;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background-color: hsl(var(--primary));
            color: hsl(var(--primary-foreground));
        }

        .btn-primary:hover {
            background-color: hsl(var(--primary-light));
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-outline {
            background-color: transparent;
            border-color: hsl(var(--muted-foreground));
            color: hsl(var(--foreground));
        }

        .btn-outline:hover {
            background-color: hsl(var(--muted));
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

       /* Pricing Section */
        .pricing {
            padding: 5rem 0;
            background-color: hsl(var(--muted));
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-header p {
            color: hsl(var(--muted-foreground));
            font-size: 1.125rem;
        }

        .pricing-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .pricing-card {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            flex: 1;
            max-width: 400px;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: black;
        }

        .price {
            font-size: 2rem;
            font-weight: 700;
            color: hsl(var(--primary));
            margin-bottom: 1rem;
        }

        .features-list {
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: hsl(var(--foreground));
        }

        .feature-item i {
            color: #22c55e;
            margin-right: 0.5rem;
        }


        /* Features Section */
        .features {
            padding: 5rem 0;
            background-color: hsl(var(--muted));
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-header p {
            color: hsl(var(--muted-foreground));
            font-size: 1.125rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background-color: hsl(var(--background));
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom right, rgba(29, 78, 216, 0.05), transparent, rgba(20, 184, 166, 0.05));
            z-index: 0;
            border-radius: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
            transition: color 0.3s;
        }

        .feature-card:hover h3 {
            color: hsl(var(--primary));
        }

        .feature-card p {
            color: hsl(var(--muted-foreground));
            position: relative;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 5rem 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background-color: hsl(var(--background));
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
            color: #facc15;
        }

        .testimonial-card p {
            color: hsl(var(--muted-foreground));
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
        }

        .testimonial-role {
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
        }

        /* Pricing Section */
        .pricing {
            padding: 5rem 0;
            background-color: hsl(var(--muted));
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .pricing-card {
            background-color: hsl(var(--background));
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .price {
            font-size: 2rem;
            font-weight: 700;
            color: hsl(var(--primary));
            margin-bottom: 1rem;
        }

        .features-list {
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            transition: transform 0.3s;
        }

        .feature-item:hover {
            transform: translateX(5px);
        }

        .feature-item i {
            color: #22c55e;
            margin-right: 0.5rem;
        }

        /* FAQ Section */
        .faq {
            padding: 5rem 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid hsl(var(--border));
            padding-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: hsl(var(--primary));
        }

        .faq-question {
            font-weight: 600;
            margin-bottom: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            padding-right: 30px;
            user-select: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .faq-question:hover {
            color: hsl(var(--primary));
        }

        /* Seta do acordeão */
        .faq-question::after {
            content: '\f078'; /* Ícone do Font Awesome */
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
            color: hsl(var(--primary));
            font-size: 0.875rem;
        }

        .faq-item.active .faq-question::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .faq-answer {
            color: hsl(var(--muted-foreground));
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
            opacity: 0;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 500px; /* Ajuste conforme necessário */
            margin-top: 0.5rem;
            opacity: 1;
        }

        /* Melhorar acessibilidade */
        .faq-question:focus {
            outline: 2px solid hsl(var(--primary));
            outline-offset: 2px;
        }

        /* Estado ativo da pergunta */
        .faq-item.active .faq-question {
            color: hsl(var(--primary));
            font-weight: 700;
        }

        /* Footer */
        footer {
            padding: 3rem 0;
            background-color: white;
            border-top: 1px solid hsl(var(--border));
        }

        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .footer-links a {
            color: hsl(var(--muted-foreground));
            text-decoration: none;
            transition: all 0.3s;
            padding: 0.5rem;
            position: relative;
        }

        .footer-links a:hover {
            color: hsl(var(--primary));
        }

        /* Garantir que o menu hambúrguer apareça em mobile */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
            }
            
            .menu-toggle i {
                display: inline-block !important;
                visibility: visible !important;
                opacity: 1 !important;
            }
        }

        /* Modo Escuro */
        [data-theme="dark"] {
            --background: 222 47% 11%;
            --foreground: 210 40% 98%;
            --primary: 201 96% 60%;
            --primary-foreground: 222 47% 10%;
            --muted: 215 20% 20%;
            --muted-foreground: 210 20% 70%;
            --border: 215 20% 30%;
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
        }

        [data-theme="dark"] {
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
        }
        

        [data-theme="dark"] header {
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
        }

        [data-theme="dark"] .header-container {
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
        }

        [data-theme="dark"] .pricing-card,
        [data-theme="dark"] .feature-card,
        [data-theme="dark"] .testimonial-card,
        [data-theme="dark"] form,
        [data-theme="dark"] .nav-links {
            background-color: hsl(var(--background));
    color: hsl(var(--foreground));
            color: hsl(var(--foreground));
            border-color: hsl(var(--border));
        }

        [data-theme="dark"] .btn-outline {
            color: hsl(var(--primary));
            border-color: hsl(var(--primary));
        }

        [data-theme="dark"] .btn-outline:hover {
            background-color: hsl(var(--primary) / 0.1);
        }

        [data-theme="dark"] .hero p,
        [data-theme="dark"] .section-header p,
        [data-theme="dark"] .faq-answer,
        [data-theme="dark"] .testimonial-card p,
        [data-theme="dark"] .testimonial-role {
            color: hsl(var(--muted-foreground));
        }

        [data-theme="dark"] footer {
            background-color: hsl(222 47% 8%);
            color: hsl(var(--foreground));
        }

        [data-theme="dark"] #feedback-type-select,
        [data-theme="dark"] #feedback-type-select option,
        [data-theme="dark"] textarea,
        [data-theme="dark"] input[type="text"],
        [data-theme="dark"] input[type="email"],
        [data-theme="dark"] input[type="password"],
        [data-theme="dark"] select {
            background-color: hsl(222 47% 16%);
            color: hsl(var(--foreground));
            border-color: hsl(var(--border));
        }

        [data-theme="dark"] .feedback h2 {
            color: hsl(var(--primary));
        }

        [data-theme="dark"] .feedback label {
            color: hsl(var(--foreground));
        }
        [data-theme="dark"] {
            --background: 222 47% 11%; /* fundo escuro */
            --foreground: 210 40% 98%; /* texto claro */
            --primary: 201 96% 60%;
            --primary-foreground: 222 47% 10%;
            --muted: 215 20% 20%;
            --muted-foreground: 210 20% 70%;
            --border: 215 20% 30%;
        }
        [data-theme="dark"] {
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
        }
        
        [data-theme="dark"] #feedback-type-select,
        [data-theme="dark"] #feedback-type-select option {
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
            border-color: hsl(var(--primary));
        }
        
        [data-theme="dark"] footer {
            background-color: hsl(222 47% 8%);
        }
        
        [data-theme="dark"] header{
            background-color: hsl(var(--background));
                    color: hsl(var(--foreground));
        }
        
        [data-theme="dark"] .feedback{
            background-color: hsl(var(--background));
                    color: hsl(var(--foreground));
        }
             /* Your provided CSS for dark mode */
                [data-theme="dark"] textarea,
                [data-theme="dark"] .feedback textarea,
                [data-theme="dark"] .feedback input,
                [data-theme="dark"] .feedback section,
                [data-theme="dark"] .feedback form,
                [data-theme="dark"] .feedback button,
                [data-theme="dark"] .feedback .btn,
                [data-theme="dark"] .feedback .btn-primary,
                [data-theme="dark"] .feedback .btn-outline,
                [data-theme="dark"] .feedback textarea,
                [data-theme="dark"] .feedback input,
                [data-theme="dark"] .feedback select,
                [data-theme="dark"] .feedback option {
                    background-color: hsl(var(--muted));
                    color: hsl(var(--foreground));
                    border-color: hsl(var(--border));
                }
        
                [data-theme="dark"] .feedback label {
                    color: hsl(var(--foreground));
                }
        
                [data-theme="dark"] .feedback h2 {
                    color: hsl(var(--primary));
                }
        
                [data-theme="dark"] .feedback form {
                    background-color: hsl(var(--background));
                    border-color: hsl(var(--border));
                    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
                }
        
                [data-theme="dark"] .feedback label {
                    color: hsl(var(--primary));
                }
        
                [data-theme="dark"] .feedback select,
                [data-theme="dark"] .feedback textarea,
                [data-theme="dark"] .feedback input {
                    background-color: hsl(222 47% 16%); /* This is what you want for the dropdown in dark mode */
                    color: hsl(var(--primary));
                    border-color: hsl(var(--primary));
                }
        
                [data-theme="dark"] .feedback option {
                    background-color: hsl(222 47% 16%); /* Ensure options also have dark background */
                    color: hsl(var(--primary));
                }
        
                [data-theme="dark"] .feedback button,
                [data-theme="dark"] .feedback .btn,
                [data-theme="dark"] .feedback .btn-primary {
                    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--primary) / 1.2));
                    color: hsl(var(--primary-foreground));
                    border: none;
                    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
                }
        
                [data-theme="dark"] .feedback button:hover,
                [data-theme="dark"] .feedback .btn:hover,
                [data-theme="dark"] .feedback .btn-primary:hover {
                    filter: brightness(1.1);
                    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
                }
        
                /* Define your HSL custom properties here if they are not already defined globally */
                /* Example: */
                :root {
                    --background: 0 0% 100%;    /* Light mode background */
                    --foreground: 222 47% 11%;  /* Light mode foreground */
                    --primary: 200 80% 50%;     /* Light mode primary color */
                    --primary-foreground: 0 0% 100%; /* Light mode primary foreground */
                    --muted: 210 20% 90%;       /* Light mode muted color */
                    --border: 210 20% 80%;      /* Light mode border color */
                }
        
                [data-theme="dark"] {
                    --background: 222 47% 11%;  /* Dark mode background */
                    --foreground: 210 20% 98%;  /* Dark mode foreground */
                    --primary: 200 80% 60%;     /* Dark mode primary color (slightly lighter for contrast) */
                    --primary-foreground: 210 20% 98%; /* Dark mode primary foreground */
                    --muted: 222 47% 16%;       /* Dark mode muted color */
                    --border: 222 47% 20%;      /* Dark mode border color */
                }
                
        [data-theme="dark"] .pricing-card,
        [data-theme="dark"] .feature-card,
        [data-theme="dark"] .testimonial-card,
        [data-theme="dark"] form,
        [data-theme="dark"] .nav-links {
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
        }
        
        [data-theme="dark"] .btn-outline {
            color: hsl(var(--primary));
            border-color: hsl(var(--primary));
        }
        
        [data-theme="dark"] .btn-outline:hover {
            background-color: hsl(var(--primary) / 0.1);
        }
        
        [data-theme="dark"] .hero p,
        [data-theme="dark"] .section-header p,
        [data-theme="dark"] .faq-answer,
        [data-theme="dark"] .testimonial-card p,
        [data-theme="dark"] .testimonial-role {
            color: hsl(var(--muted-foreground));
        }

        /* Language Switcher no modo escuro */
        [data-theme="dark"] #languageSwitcher {
            background-color: hsl(var(--muted));
            color: hsl(var(--foreground));
            border-color: hsl(var(--primary));
        }

        [data-theme="dark"] #languageSwitcher:hover {
            background-color: hsl(var(--primary) / 0.1);
            border-color: hsl(var(--primary));
        }

        [data-theme="dark"] #languageSwitcher:focus {
            outline: none;
            border-color: hsl(var(--primary));
            box-shadow: 0 0 0 2px hsl(var(--primary) / 0.3);
            background-color: hsl(var(--muted));
        }

        [data-theme="dark"] #languageSwitcher option {
            background-color: hsl(var(--muted));
            color: hsl(var(--foreground));
        }

        [data-theme="dark"] .feedback h2 {
            color: hsl(var(--primary));
        }
        
        [data-theme="dark"] .pricing-card h3 {
            color: #fff !important;
        }
        
