/* Estilos para o modal de contato */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.modal-container {
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.contact-form {
    padding: 30px;
}

.contact-form h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 30px;
}

.form-success i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Ajustes para o ícone do robô */
.robot-icon {
    width: 80px;
    height: 80px;
}
