        :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;
        }

        /* Modal de Contato Específico */
.contact-modal {
    background-color: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    position: relative;
}

/* Quando o modal de contato estiver ativo */
#contactModal.active .contact-modal {
    transform: translateY(0);
}

        * {
            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;
        }

        /* Container Principal */
        .main-container {
            display: flex;
            min-height: 100vh;
            width: 100%;
        }

        /* Lado Esquerdo - Conteúdo */
        .content-side {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--white);
            display: flex;
            flex-direction: column;
            padding: 40px;
        }

        /* Header */
        .content-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border-color);
        }

        .logo-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary), #128c7e);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            font-weight: bold;
        }

        .logo-text {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .logo-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            margin-top: 6px;
        }

        /* Badge Verde Premium */
        .premium-badge {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 25px;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            position: relative;
            overflow: hidden;
        }
        
        .premium-badge i {
            font-size: 0.8rem;
            margin-right: 4px;
        }

        /* Headline */
        .headline h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .headline .text-blue-600 {
            color: var(--primary);
        }
        
        .headline p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        /* Disclaimer Box */
        .disclaimer-box {
            background-color: var(--primary-light);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 8px;
            font-size: 0.95rem;
            color: var(--text-primary);
            text-align: left;
        }
        
        .disclaimer-box strong {
            color: var(--primary-dark);
        }

        /* Botão CTA */
        .cta-button {
            width: 100%;
            max-width: 400px;
            padding: 18px;
            background: linear-gradient(135deg, var(--primary), #128c7e);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin: 30px auto;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
        }
        
        .cta-button:hover {
            background: linear-gradient(135deg, var(--primary-dark), #0d7a63);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
        }
        
        .cta-button:active {
            transform: translateY(0);
        }
        
        .cta-button i {
            font-size: 1.2rem;
        }
        
        .cta-subtitle {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 10px;
            margin-bottom: 40px;
        }

        /* Carrossel de Logos com disclaimer */
        .logo-section {
            margin: 40px 0;
            position: relative;
        }
        
        .logo-title {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .logo-disclaimer {
            text-align: center;
            font-size: 0.75rem;
            color: #999;
            margin-bottom: 15px;
            font-style: italic;
        }
        
        .logo-carousel-container {
            overflow: hidden;
            position: relative;
        }
        
        .logo-carousel {
            display: flex;
            animation: scroll 25s linear infinite;
            gap: 40px;
        }
        
        .logo-carousel:hover {
            animation-play-state: paused;
        }
        
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .logo-img {
            filter: grayscale(100%);
            opacity: 0.4;
            transition: all 0.3s ease;
            height: 35px;
            object-fit: contain;
        }
        
        .logo-img:hover {
            filter: grayscale(0%);
            opacity: 0.7;
        }

        /* Áreas de Especialização (substitui estatísticas) */
        .expertise-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-radius: 16px;
            padding: 40px 25px;
            margin: 40px 0;
        }
        
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .expertise-item {
            text-align: center;
            padding: 0 12px;
        }
        
        .expertise-icon {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .expertise-label {
            font-size: 0.95rem;
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.5px;
            line-height: 1.4;
        }
        
        .expertise-desc {
            font-size: 0.75rem;
            color: #9ca3af;
            margin-top: 5px;
        }

        /* Seção da Dra. Geysa */
        .expert-section {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            padding: 40px;
            margin: 40px 0;
        }
        
        .expert-photo {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid var(--primary);
            margin: 0 auto 25px;
            display: block;
        }
        
        .expert-title {
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 600;
            margin-bottom: 8px;
            text-align: center;
        }
        
        .expert-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .expert-bio {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }
        
        .expert-qualifications {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
            justify-content: center;
        }
        
        .qualification {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background-color: var(--sidebar-bg);
            border-radius: 8px;
            min-width: 180px;
        }
        
        .qualification i {
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        .qualification span {
            font-size: 0.95rem;
            color: var(--text-primary);
        }

        /* Footer */
        .footer {
            margin-top: auto;
            padding-top: 40px;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }
        
        .footer-company {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        
        .footer-details {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        /* Links Legais no Footer */
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .footer-link {
            color: var(--text-secondary);
            font-size: 0.8rem;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .footer-link:hover {
            color: var(--primary);
        }
        
        .footer-link i {
            font-size: 0.7rem;
        }

        .footer-separator {
            color: var(--border-color);
        }

        /* Footer Legal (NOVO) */
        .legal-footer {
            margin-top: 20px;
            padding: 15px;
            background-color: var(--primary-light);
            border-radius: 8px;
            border-left: 4px solid var(--primary);
        }
        
        .legal-footer p {
            font-size: 11px;
            color: #666;
            line-height: 1.4;
        }
        
        .legal-footer strong {
            color: var(--text-primary);
        }

        /* ========== MODAL ATUALIZADO COM BOTÃO "X" ========== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .confirmation-modal {
            background-color: var(--white);
            border-radius: 12px;
            width: 90%;
            max-width: 400px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(-20px);
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .modal-overlay.active .confirmation-modal {
            transform: translateY(0);
        }
        
        /* Botão "X" para fechar */
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: var(--sidebar-bg);
            border: none;
            color: var(--text-secondary);
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            z-index: 10;
        }
        
        .modal-close:hover {
            background-color: #e5e7eb;
            color: var(--text-primary);
            transform: rotate(90deg);
        }
        
        .modal-close:active {
            transform: rotate(90deg) scale(0.95);
        }
        
        .modal-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .modal-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            padding-right: 20px;
        }
        
        .modal-message {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 25px;
            padding-right: 10px;
        }
        
        .modal-button {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 16px 20px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .modal-button:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #189746 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
        }
        
        .modal-button:active {
            transform: translateY(0);
        }
        
        .modal-button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none !important;
        }
        
        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* ========== WIDGET WHATSAPP INTELIGENTE ========== */
        .whatsapp-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9998;
        }
        
        /* Botão flutuante do WhatsApp */
        .whatsapp-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            position: relative;
            opacity: 0;
            transform: translateY(20px) scale(0.8);
            animation: none; /* Removemos animação automática */
        }
        
        .whatsapp-button.show {
            opacity: 1;
            transform: translateY(0) scale(1);
            animation: buttonEntrance 0.5s ease forwards;
        }
        
        @keyframes buttonEntrance {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }
        
        .whatsapp-button:active {
            transform: scale(0.95);
        }
        
        /* Badge de notificação */
        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ff3b30;
            color: white;
            font-size: 12px;
            font-weight: bold;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Mini Chat */
        .mini-chat {
            position: absolute;
            bottom: 70px;
            right: 0;
            width: 280px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            opacity: 0;
            transform: translateY(10px) scale(0.95);
            transition: all 0.3s ease;
            z-index: 9999;
            display: none;
        }
        
        .mini-chat.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            display: block;
        }
        
        /* Cabeçalho do chat */
        .chat-header {
            background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
            color: white;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .chat-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden; /* ESSENCIAL para imagem ficar redonda */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Importante para imagem não distorcer */
            object-position: center;
            border-radius: 50%; /* Garante que a imagem seja redonda */
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-sizing: border-box;
        }
        
        .chat-info {
            flex: 1;
        }
        
        .chat-name {
            font-weight: 600;
            font-size: 14px;
        }
        
        .chat-status {
            font-size: 11px;
            opacity: 0.9;
        }
        
        .chat-close {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.2s;
        }
        
        .chat-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Corpo do chat */
        .chat-body {
            padding: 15px;
            background: var(--chat-bg);
            min-height: 120px;
            max-height: 200px;
            overflow-y: auto;
        }
        
        /* Mensagem recebida */
        .message-received {
            background: white;
            border-radius: 12px 12px 12px 4px;
            padding: 10px 12px;
            margin-bottom: 10px;
            max-width: 85%;
            position: relative;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .message-received .message-text {
            font-size: 13px;
            color: var(--text-primary);
            line-height: 1.4;
        }
        
        .message-received .message-time {
            font-size: 10px;
            color: var(--text-secondary);
            text-align: right;
            margin-top: 4px;
        }
        
        /* Rodapé do chat */
        .chat-footer {
            padding: 15px;
            background: white;
            border-top: 1px solid var(--border-color);
        }
        
        .chat-button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 3px 10px rgba(37, 211, 102, 0.2);
        }
        
        .chat-button:hover {
            background: linear-gradient(135deg, var(--whatsapp-dark), #0d7a63);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }
        
        .chat-button:active {
            transform: translateY(0);
        }
        
        .chat-button i {
            font-size: 16px;
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .content-side {
                padding: 30px 20px;
            }
            
            .headline h1 {
                font-size: 1.8rem;
            }
            
            .expert-photo {
                width: 160px;
                height: 160px;
            }
            
            .expert-name {
                font-size: 1.5rem;
            }
            
            .expert-qualifications {
                flex-direction: column;
                align-items: center;
            }
            
            .qualification {
                width: 100%;
                max-width: 250px;
            }
            
            .cta-button {
                padding: 16px;
                font-size: 1rem;
            }
            
            .expertise-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .modal-close {
                top: 10px;
                right: 10px;
                width: 24px;
                height: 24px;
                font-size: 14px;
            }
            
            .modal-title {
                font-size: 1.2rem;
                padding-right: 30px;
            }
            
            .confirmation-modal {
                padding: 25px 20px;
                max-width: 320px;
            }
            
            .whatsapp-button {
                width: 55px;
                height: 55px;
                font-size: 24px;
                bottom: 15px;
                right: 15px;
            }
            
            .mini-chat {
                width: 260px;
                bottom: 65px;
                right: 0;
            }
            
            .footer-links {
                gap: 10px;
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            .content-side {
                padding: 25px 15px;
            }
            
            .headline h1 {
                font-size: 1.6rem;
            }
            
            .expert-photo {
                width: 140px;
                height: 140px;
            }
            
            .expert-name {
                font-size: 1.4rem;
            }
            
            .premium-badge {
                font-size: 0.75rem;
                padding: 6px 16px;
            }
            
            .cta-button {
                padding: 14px;
                font-size: 0.95rem;
            }
            
            .confirmation-modal {
                padding: 25px 20px;
                max-width: 300px;
            }
            
            .modal-close {
                top: 8px;
                right: 8px;
                width: 22px;
                height: 22px;
            }
            
            .modal-title {
                font-size: 1.1rem;
                padding-right: 25px;
            }
            
            .modal-message {
                font-size: 0.9rem;
            }
            
            .modal-button {
                padding: 14px 16px;
                font-size: 0.95rem;
            }
            
            .whatsapp-button {
                width: 50px;
                height: 50px;
                font-size: 22px;
                bottom: 10px;
                right: 10px;
            }
            
            .mini-chat {
                width: 240px;
                bottom: 60px;
                right: 0;
            }
        }
