/* ============================================
   ESTILOS ESPECÍFICOS DA PÁGINA DE CONTATO
   ============================================ */

/* Hero Contato */
.hero-contato {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a3f5f 100%);
}

.hero-contato .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.3;
}

.hero-contato .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-contato .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 44, 68, 0.85) 0%, rgba(31, 44, 68, 0.7) 100%);
    z-index: 2;
}

.hero-contato .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 4rem 0;
}

.hero-contato .hero-text h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-contato .hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-contato .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Contato Direto */
.contato-direto {
    background: #fff;
    padding: 4rem 0;
}

.contato-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contato-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.contato-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contato-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contato-valor {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contato-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Informações da Empresa */
.info-empresa {
    background: var(--light-bg);
    padding: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Formulário de Contato */
.formulario-contato {
    background: #fff;
    padding: 4rem 0;
}

.form-contato {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 105, 42, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-contato .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* CTA Final */
.cta-final-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a3f5f 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content h2::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-contato .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-contato .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .form-contato {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-contato .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}
