        /* ========== ESTILOS GERAIS ========== */
        :root {
            --primary: #25d366;
            --primary-dark: #1da851;
            --primary-light: #dcf8c6;
            --sidebar-bg: #f0f2f5;
            --chat-bg: #efeae2;
            --message-out: #dcf8c6;
            --message-in: #ffffff;
            --border-color: #e6e6e6;
            --text-primary: #111b21;
            --text-secondary: #667781;
            --hover-bg: #f5f6f6;
            --active-bg: #e9edef;
            --voltacred-blue: #2a5bd7;
            --voltacred-dark: #1e429f;
            --white: #ffffff;
            --whatsapp-green: #25d366;
            --whatsapp-dark: #128c7e;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--sidebar-bg);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
            width: 100%;
        }
        
        /* ========== CORREÇÃO FUNDAMENTAL: PREVENIR HORIZONTAL SCROLL ========== */
        html, body {
            max-width: 100%;
            overflow-x: hidden;
            position: relative;
        }
        
        /* Container Principal */
        .main-container {
            display: flex;
            min-height: 100vh;
            width: 100%;
            max-width: 100%;
        }
        
        /* ========== NAVBAR FIXA NO TOPO ========== */
        .home-navbar {
            background-color: var(--white);
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            width: 100%;
            max-width: 100%;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .nav-logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary), #128c7e);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            font-weight: bold;
        }
        
        .nav-logo-text {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        .nav-logo-subtitle {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 2px;
        }
        
        .nav-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .nav-link {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
        }
        
        .nav-link:hover {
            background-color: var(--primary-light);
            color: var(--primary-dark);
        }
        
        .nav-link.whatsapp {
            background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
            color: white;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
        }
        
        .nav-link.whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-primary);
            cursor: pointer;
            width: 44px;
            height: 44px;
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s;
            z-index: 1001;
        }
        
        .mobile-menu-btn:hover {
            background-color: var(--hover-bg);
        }
        
        /* ========== CONTEÚDO PRINCIPAL (COM ESPAÇO PARA NAVBAR FIXA) ========== */
        .main-content {
            width: 100%;
            max-width: 100%;
            margin-top: 80px; /* Espaço para navbar fixa */
            overflow: hidden;
        }
        
        /* Hero Section */
        .hero-section {
            padding: 60px 20px;
            background: var(--white);
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }
        
        .hero-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            width: 100%;
            padding: 0 15px;
        }
        
        .hero-badge {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 10px 25px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 25px;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
        }
        
        .hero-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            line-height: 1.3;
            word-wrap: break-word;
        }
        
        .hero-title span {
            color: var(--primary);
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.6;
            word-wrap: break-word;
        }
        
        /* Disclaimer Hero */
        .disclaimer-box {
            background-color: var(--primary-light);
            border-left: 4px solid var(--primary);
            padding: 18px;
            margin: 20px 0;
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--text-primary);
            text-align: left;
            max-width: 100%;
            word-wrap: break-word;
        }
        
        .disclaimer-box strong {
            color: var(--primary-dark);
        }
        
        /* API Compliance Box */
        .api-compliance {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: white;
            padding: 18px;
            border-radius: 10px;
            margin: 30px auto;
            max-width: 100%;
            text-align: center;
            font-size: 0.85rem;
            word-wrap: break-word;
        }
        
        .api-compliance a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            margin: 0 8px;
        }
        
        .api-compliance a:hover {
            text-decoration: underline;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
            flex-wrap: wrap;
            width: 100%;
        }
        
        .hero-button {
            padding: 16px 25px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            border: none;
            min-width: 200px;
            width: 100%;
            max-width: 300px;
        }
        
        .hero-button.primary {
            background: linear-gradient(135deg, var(--primary), #128c7e);
            color: white;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
        }
        
        .hero-button.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
        }
        
        .hero-button.secondary {
            background-color: white;
            color: var(--text-primary);
            border: 2px solid var(--primary);
        }
        
        .hero-button.secondary:hover {
            background-color: var(--primary-light);
            transform: translateY(-3px);
        }
        
        /* Features Section */
        .features-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-radius: 12px;
            padding: 40px 20px;
            margin: 40px 15px;
            width: calc(100% - 30px);
            max-width: 100%;
            overflow: hidden;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .feature-item {
            text-align: center;
            padding: 0 10px;
        }
        
        .feature-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
        
        .feature-title {
            font-size: 1.1rem;
            color: white;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .feature-desc {
            font-size: 0.85rem;
            color: #9ca3af;
            line-height: 1.4;
        }
        
        /* Team Section */
        .team-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
            width: 100%;
            overflow: hidden;
        }
        
        .section-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 15px;
            padding: 0 15px;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.5;
            padding: 0 15px;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 50px;
            width: 100%;
        }
        
        .team-member {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
        }
        
        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .member-photo {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .member-info {
            padding: 20px;
            text-align: center;
        }
        
        .member-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 5px;
        }
        
        .member-role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }
        
        .member-desc {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.4;
        }
        
        .member-oab {
            margin-top: 8px;
            font-size: 0.8rem;
            color: var(--text-secondary);
            font-weight: 600;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--white);
            border-radius: 10px;
            padding: 30px 20px;
            margin: 40px 15px;
            border: 1px solid var(--border-color);
            max-width: 100%;
            width: calc(100% - 30px);
            overflow: hidden;
        }
        
        .faq-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 12px;
            word-wrap: break-word;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            width: 100%;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 20px;
            width: 100%;
        }
        
        .faq-question {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: color 0.3s;
            word-wrap: break-word;
        }
        
        .faq-question:hover {
            color: var(--primary);
        }
        
        .faq-question i {
            font-size: 0.8rem;
            margin-right: 10px;
            transition: transform 0.3s;
        }
        
        .faq-answer {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
            padding-left: 25px;
            display: none;
            word-wrap: break-word;
        }
        
        /* Footer Home */
        .home-footer {
            background-color: #1e293b;
            color: white;
            padding: 50px 20px 25px;
            margin-top: 60px;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            width: 100%;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .footer-logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), #128c7e);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        
        .footer-logo-text {
            font-size: 24px;
            font-weight: 700;
            color: white;
        }
        
        .footer-description {
            color: #94a3b8;
            line-height: 1.5;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .footer-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-link {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }
        
        .footer-link:hover {
            color: white;
        }
        
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        
        .contact-item i {
            color: var(--primary);
            width: 18px;
            font-size: 1rem;
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 25px;
            border-top: 1px solid #334155;
            text-align: center;
            color: #94a3b8;
            font-size: 0.85rem;
            line-height: 1.5;
            word-wrap: break-word;
        }
        
        /* Legal Footer */
        .legal-footer {
            margin-top: 25px;
            padding: 18px;
            background-color: var(--primary-light);
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            width: 100%;
        }
        
        .legal-footer p {
            font-size: 11px;
            color: #666;
            line-height: 1.4;
            word-wrap: break-word;
        }
        
        .legal-footer strong {
            color: var(--text-primary);
        }
        
        /* ========== CORREÇÕES CRÍTICAS PARA MOBILE ========== */
        
        @media (max-width: 768px) {
            /* Prevenir qualquer horizontal scroll */
            html, body {
                overflow-x: hidden;
                width: 100%;
                position: relative;
            }
            
            /* Ajustar altura da navbar fixa */
            .home-navbar {
                padding: 12px 0;
            }
            
            /* Espaço para navbar fixa em mobile */
            .main-content {
                margin-top: 70px;
            }
            
            /* Menu mobile - correção total */
            .mobile-menu-btn {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 0;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                border-radius: 8px;
                margin: 0 15px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease, opacity 0.3s ease;
                opacity: 0;
                z-index: 1000;
                width: calc(100% - 30px);
            }
            
            .nav-links.active {
                max-height: 350px;
                opacity: 1;
                padding: 15px 0;
            }
            
            .nav-link {
                width: 100%;
                justify-content: flex-start;
                padding: 12px 20px;
                margin: 0;
                font-size: 0.95rem;
                border-radius: 0;
                border: none;
                border-bottom: 1px solid var(--border-color);
                text-align: left;
            }
            
            .nav-link:last-child {
                border-bottom: none;
            }
            
            .nav-link.whatsapp {
                background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
                color: white;
                margin-top: 10px;
                border-radius: 6px;
                margin-left: 15px;
                margin-right: 15px;
                width: calc(100% - 30px);
            }
            
            .nav-link:not(.whatsapp):hover {
                background-color: var(--primary-light);
            }
            
            /* Ajustar posição do logo no mobile */
            .nav-container {
                padding: 0 15px;
                height: 70px;
                position: relative;
                max-width: 100%;
            }
            
            /* Ajustar hero section para mobile */
            .hero-section {
                padding: 40px 15px;
                width: 100%;
            }
            
            .hero-title {
                font-size: 1.8rem;
                padding: 0 10px;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                padding: 0 10px;
            }
            
            .hero-badge {
                font-size: 0.8rem;
                padding: 8px 20px;
            }
            
            .hero-button {
                min-width: 100%;
                max-width: 100%;
                padding: 14px 20px;
                font-size: 0.95rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 12px;
                padding: 0 10px;
            }
            
            /* Features grid em coluna única */
            .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .features-section {
                margin: 30px 15px;
                padding: 30px 15px;
                width: calc(100% - 30px);
            }
            
            /* Team grid em coluna única */
            .team-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 0 10px;
            }
            
            .team-section {
                padding: 40px 15px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .member-photo {
                height: 180px;
            }
            
            /* Ajustar FAQ section */
            .faq-section {
                margin: 30px 15px;
                padding: 25px 15px;
                width: calc(100% - 30px);
            }
            
            .faq-section h2 {
                font-size: 1.4rem;
            }
            
            .faq-question {
                font-size: 0.95rem;
            }
            
            .faq-answer {
                font-size: 0.85rem;
            }
            
            /* Footer em coluna única */
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 35px;
            }
            
            .contact-item {
                justify-content: center;
            }
            
            .footer-logo {
                justify-content: center;
            }
            
            .home-footer {
                padding: 40px 15px 20px;
            }
            
            /* Garantir que tudo caiba na tela */
            .disclaimer-box,
            .api-compliance,
            .legal-footer {
                padding: 15px;
                margin-left: 0;
                margin-right: 0;
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.6rem;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
            
            .features-section {
                margin: 25px 10px;
                padding: 25px 15px;
                width: calc(100% - 20px);
            }
            
            .team-section {
                padding: 35px 10px;
            }
            
            .faq-section {
                margin: 25px 10px;
                padding: 20px 15px;
                width: calc(100% - 20px);
            }
            
            .nav-links {
                margin: 0 10px;
                width: calc(100% - 20px);
            }
            
            .nav-link.whatsapp {
                margin-left: 10px;
                margin-right: 10px;
                width: calc(100% - 20px);
            }
            
            .hero-buttons {
                padding: 0 5px;
            }
        }
        
        @media (min-width: 769px) {
            .nav-overlay {
                display: none !important;
            }
        }