        /* CSS Customizado para Refinamento */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Chatbot Animations */
        .chat-visible {
            display: flex !important;
            animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .chat-hidden {
            display: none !important;
        }

        /* Mensagem de Sucesso ao enviar o Formulario */

        .close {
            display: none;
        }

        #submit-response {
            background-color: #7dc057;
            color: white;
            font-size: 16px;
            width: 60%;
            margin: 15px auto 0 auto;
            padding: 10px 15px;
            border-radius: 10px;
            text-align: center;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .msg {
            max-width: 85%;
            padding: 14px;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 10px;
            animation: popIn 0.3s;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .msg-bot {
            align-self: flex-start;
            background: #f1f5f9;
            color: #334155;
            border-radius: 4px 16px 16px 16px;
            border: 1px solid #e2e8f0;
        }

        .msg-user {
            align-self: flex-end;
            background: #C5A035;
            color: white;
            border-radius: 16px 4px 16px 16px;
            background: linear-gradient(135deg, #C5A035 0%, #9F7D23 100%);
        }

        @keyframes popIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .opt-btn {
            width: 100%;
            text-align: left;
            padding: 12px 16px;
            background: white;
            border: 1px solid #C5A035;
            color: #9F7D23;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 6px;
        }

        .opt-btn:hover {
            background: #C5A035;
            color: white;
            transform: translateX(4px);
        }

        /* Glassmorphism Header */
        .glass-header {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

/* ============ MOBILE ============ */

@media (max-width: 768px) {

    .main {
        width: 150%;
        display: flex;
        flex-direction: column;
        
    }
    .footer {
        width: 150%;

    }
}