 * {
            font-family: 'Inter', sans-serif;
        }

        .card-hover {
            transition: all 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .btn-hover {
            transition: all 0.3s ease;
        }

        .btn-hover:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .hero-gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        }

        .sofia-photo {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            object-position: top;
            border: 3px solid #e5e7eb;
        }

        .card-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        html, body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .page-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .main-content {
            flex: 1;
        }

        .footer {
            margin-top: auto;
        }

        /* Login Dropdown - Corrigido para funcionar melhor */
        .login-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            padding: 24px;
            width: 300px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 50;
        }

        /*.login-container:hover .login-dropdown,
        .login-dropdown:hover {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }*/

        /* Abre via clique */
        .login-dropdown.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }


        .login-container {
            position: relative;
        }

        /* Adicionar uma área de buffer para evitar que o dropdown suma */
        .login-dropdown::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 0;
            right: 0;
            height: 10px;
        }

        /* Modal de Recuperação de Senha */
        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-backdrop.show {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: white;
            border-radius: 8px;
            padding: 40px;
            width: 90%;
            max-width: 400px;
            position: relative;
            transform: scale(0.7);
            transition: all 0.3s ease;
        }

        .modal-backdrop.show .modal-content {
            transform: scale(1);
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-modal:hover {
            color: #666;
        }

        .softwell-logo {
            display: block;
            margin: 0 auto 30px auto;
            height: 40px;
        }

        .input-group {
            position: relative;
            margin-bottom: 20px;
        }

        .input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #007bff;
            font-size: 16px;
            z-index: 1;
        }

        .input-field {
            width: 100%;
            padding: 12px 15px 12px 45px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .input-field:focus {
            border-color: #007bff;
        }

        .input-field::placeholder {
            color: #999;
        }

        .send-button {
            width: 100%;
            background: #007bff;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .send-button:hover {
            background: #0056b3;
        }

        .success-message {
            display: none;
            text-align: center;
            color: #28a745;
            margin-top: 20px;
            font-size: 14px;
        }

        /* Estilos do Chat */
        .chat-button {
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        }

        .chat-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
        }

        .chat-widget {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .chat-closed {
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
        }

        .chat-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .chat-messages {
            background: #f9fafb;
        }

        .message-bubble {
            animation: fadeInUp 0.3s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .typing-indicator div {
            animation: bounce 1.4s infinite ease-in-out both;
        }

        .typing-indicator div:nth-child(1) { animation-delay: -0.32s; }
        .typing-indicator div:nth-child(2) { animation-delay: -0.16s; }

        @keyframes bounce {
            0%, 80%, 100% {
                transform: scale(0);
            } 40% {
                transform: scale(1);
            }
        }

        /* Otimizações para PDF Export */
        @media print {
            .chat-button, .chat-widget {
                display: none !important;
            }
            
            .page-container {
                min-height: auto;
            }
            
            body {
                overflow: visible !important;
            }
        }

        /* Responsividade do chat */
        @media (max-width: 640px) {
            .chat-widget {
                width: calc(100vw - 2rem);
                right: 1rem;
                left: 1rem;
            }
        }

        /* Melhorar acessibilidade dos campos de input */
        .login-dropdown input:focus {
            outline: 2px solid #3b82f6;
            outline-offset: 2px;
        }

        /* Melhorar o hover do botão de login */
        .login-container > a {
            position: relative;
            z-index: 51;
        }

       /* Maker AI Card */
.maker-ai-card {
    background: white;
    border: 3px solid #00FF9D;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.1);
    transition: all 0.3s ease;
}

.maker-ai-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.15);
}

/* Ícone do robô (usado no card) */
.robot-icon {
    transition: all 0.3s ease;
}

.robot-icon:hover {
    transform: scale(1.05) rotate(5deg);
}

/* Responsivo: ajuste do layout do conteúdo do card */
@media (max-width: 768px) {
    .maker-ai-card {
        text-align: center;
    }
    .maker-ai-content {
        flex-direction: column;
        text-align: center;
    }
}


/*maker ai */
/* -------------------------------
   Estilos exclusivos do Maker AI Card
-----------------------------------*/

.maker-ai-card {
    background: white;
    border: 3px solid #00FF9D;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.1);
    transition: all 0.3s ease;
}

.maker-ai-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.15);
}

.maker-ai-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .maker-ai-content {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }
}

.robot-icon {
    transition: all 0.3s ease;
}

.robot-icon:hover {
    transform: scale(1.05) rotate(5deg);
}

.maker-ai-card .download-btn {
    background-color: #00FF9D;
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.maker-ai-card .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
