        body {
            font-family: 'Inter', sans-serif;
            background-color: #f7f7f7;
        }
        /* Definição de cores personalizadas para o Tailwind */
        .custom-green {
            background-color: #2ECC71; /* Cor de fundo principal */
        }
        .text-custom-green {
            color: #2ECC71; /* Cor do texto */
        }
        .border-custom-green {
            border-color: #2ECC71; /* Cor da borda */
        }
        .hover-custom-green:hover {
            background-color: #25A259; /* Cor do hover para o botão */
        }
        /* Estilo para a barra de rolagem do pop-up de privacidade */
        #privacy-popup::-webkit-scrollbar {
            width: 8px;
        }
        #privacy-popup::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        #privacy-popup::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 10px;
        }
        #privacy-popup::-webkit-scrollbar-thumb:hover {
            background: #999;
        }
        /* Estilo para o botão flutuante do WhatsApp */
        .whatsapp-button {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: #25D366; /* Cor do WhatsApp */
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease;
            z-index: 1000; /* Garante que esteja acima de outros elementos */
        }
        .whatsapp-button:hover {
            background-color: #1DA851;
        }