/* ===== PÁGINA DE CONTATO - CSS ===== */

/* Escopo específico para evitar conflitos */
.contato-page .main-content {
    min-height: calc(100vh - 140px);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contato-page .container {
    max-width: 1200px;
}

/* ===== SEÇÃO PRINCIPAL ===== */
.contato-section {
    padding: 4rem 0;
}

.contato-section h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #f97316 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 1rem;
}

.contato-section p {
    font-family: 'Inter', sans-serif;
    color: #64748b;
    line-height: 1.8;
}

/* ===== FORMULÁRIO ===== */
.contato-page form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); 
}

.contato-page label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contato-page input,
.contato-page select,
.contato-page textarea {
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contato-page input:focus,
.contato-page select:focus,
.contato-page textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 
        0 0 0 3px rgba(249, 115, 22, 0.1),
        0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.contato-page input::placeholder,
.contato-page textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* ===== BOTÃO DE ENVIO ===== */
.contato-page #btnEnviar {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.025em;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
    border: none;
    box-shadow: 
        0 10px 15px -3px rgba(249, 115, 22, 0.4),
        0 4px 6px -2px rgba(249, 115, 22, 0.2);
    position: relative;
    overflow: hidden;
}

.contato-page #btnEnviar:hover {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #f59e0b 100%);
    box-shadow: 
        0 20px 25px -5px rgba(249, 115, 22, 0.5),
        0 10px 10px -5px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.contato-page #btnEnviar:active {
    transform: translateY(0) scale(1);
}

.contato-page #btnEnviar:disabled {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ===== CARDS DE INFORMAÇÃO ===== */
.contato-page .bg-gradient-to-br {
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contato-page .bg-gradient-to-br:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ===== ÍCONES ===== */
.contato-page .bg-green-500,
.contato-page .bg-blue-500,
.contato-page .bg-purple-500 {
    transition: all 0.3s ease;
}

.contato-page .bg-green-500:hover {
    background-color: #059669;
    transform: scale(1.1);
}

.contato-page .bg-blue-500:hover {
    background-color: #2563eb;
    transform: scale(1.1);
}

.contato-page .bg-purple-500:hover {
    background-color: #7c3aed;
    transform: scale(1.1);
}

/* ===== MENSAGENS DE STATUS ===== */
.contato-page #statusMessage.success {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 1px solid #22c55e;
    color: #166534;
}

.contato-page #statusMessage.error {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border: 1px solid #ef4444;
    color: #991b1b;
}

.contato-page #statusMessage.loading {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    color: #92400e;
}

/* ===== DESAFIO ANTI-BOT ===== */
.contato-page #desafioTexto {
    font-weight: 700;
    font-size: 1.1rem;
    color: #f97316;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .contato-section {
        padding: 3rem 0;
    }
    
    .contato-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contato-section {
        padding: 2rem 0;
    }
    
    .contato-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .contato-page .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contato-page .bg-white {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .contato-section h1 {
        font-size: 1.75rem;
    }
    
    .contato-page .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .contato-page .bg-gradient-to-br,
    .contato-page .bg-white {
        padding: 1.5rem;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contato-page .main-content {
    animation: fadeIn 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.contato-page #btnEnviar:disabled {
    animation: pulse 1.5s infinite;
}

/* ===== MELHORIAS VISUAIS ===== */
.contato-page input[type="tel"] {
    font-family: 'Fira Code', monospace;
}

.contato-page .text-green-500 {
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== HOVER EFFECTS ADICIONAIS ===== */
.contato-page .space-y-6 > div {
    transition: all 0.2s ease;
}

.contato-page .space-y-6 > div:hover {
    transform: translateX(4px);
}

.contato-page .flex.items-center.space-x-4 {
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.contato-page .flex.items-center.space-x-4:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(4px);
}
