/**
 * Marketing Marca Viva Contact - Estilos Futuristas
 * Versão: 1.0.0
 */

/* Reset e Base */
.mmv-contact-container {
    position: relative;
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #cbd5e1; /* Cor de texto padrão */
    background: #0f172a; /* Fundo escuro */
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin: 2rem auto;
    max-width: 1200px;
}

.mmv-contact-container * {
    box-sizing: border-box;
}

/* Header da Página de Contato */
.mmv-contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mmv-contact-title {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a78bfa, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out;
}

.mmv-contact-subtitle {
    margin: 0.5rem 0 0 0;
    font-size: 1.2rem;
    color: #94a3b8;
    animation: fadeIn 1s ease-out 0.2s both;
}

/* Conteúdo Principal */
.mmv-contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.mmv-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mmv-info-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.6s ease-out forwards;
}

.mmv-info-card:nth-child(1) { animation-delay: 0.3s; }
.mmv-info-card:nth-child(2) { animation-delay: 0.4s; }
.mmv-info-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.mmv-info-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.mmv-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mmv-info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.mmv-gradient-purple { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.mmv-gradient-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.mmv-gradient-green { background: linear-gradient(135deg, #10b981, #059669); }

.mmv-info-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.mmv-info-text {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #94a3b8;
}

/* Botões */
.mmv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mmv-button-primary {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.mmv-button-primary:hover {
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

.mmv-button-outline {
    background: transparent;
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.5);
}

.mmv-button-outline:hover {
    background: rgba(139, 92, 246, 0.1);
}

/* Formulário de Contato */
.mmv-contact-form-wrapper {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.6s ease-out forwards 0.6s;
}

.mmv-form-title {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

.mmv-form-group {
    margin-bottom: 1.5rem;
}

.mmv-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #a78bfa;
}

.mmv-form-group input,
.mmv-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(51, 65, 85, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mmv-form-group input:focus,
.mmv-form-group textarea:focus {
    border-color: #06b6d4;
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.3);
    outline: none;
}

.mmv-form-group textarea {
    resize: vertical;
}

.mmv-form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mmv-form-message.success {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
    opacity: 1;
}

.mmv-form-message.error {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    opacity: 1;
}

/* Responsividade */
@media (max-width: 768px) {
    .mmv-contact-container {
        padding: 1rem;
        margin: 1rem auto;
    }

    .mmv-contact-title {
        font-size: 2rem;
    }

    .mmv-contact-subtitle {
        font-size: 1rem;
    }

    .mmv-contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mmv-info-card {
        padding: 1rem;
    }

    .mmv-contact-form-wrapper {
        padding: 1.5rem;
    }

    .mmv-button {
        width: 100%;
    }
}
