/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--azul-primario) 0%, var(--azul-fonte) 100%);
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    text-align: center;
    color: var(--branco-secundario);
}

.contact-hero-content h1 {
    font-family: var(--font-lora);
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--branco-secundario);
}

.contact-hero-content p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section Enhancements */
.contact-section {
    padding: 80px 0;
    background-color: var(--branco-primario);
}

.contact-info h2 {
    color: var(--azul-fonte);
    font-size: 28px;
    margin-bottom: 15px;
    font-family: var(--font-lora);
}

.contact-info > .contact-info-content > p {
    color: var(--preto);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item .contact-text {
    color: var(--azul-fonte);
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-item small {
    color: var(--preto);
    opacity: 0.8;
}

.contact-form h2 {
    color: var(--azul-fonte);
    font-size: 28px;
    margin-bottom: 25px;
    font-family: var(--font-lora);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--cinza);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-container h2 {
    text-align: center;
    color: var(--azul-fonte);
    font-size: 32px;
    margin-bottom: 40px;
    font-family: var(--font-lora);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* FAQ Preview Section */
.faq-preview {
    padding: 80px 0;
    background-color: var(--branco-primario);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-container h2 {
    text-align: center;
    color: var(--azul-fonte);
    font-size: 32px;
    margin-bottom: 40px;
    font-family: var(--font-lora);
}

.faq-items {
    margin-bottom: 40px;
}

.faq-item {
    background: var(--branco-secundario);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--azul-primario);
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--preto);
    line-height: 1.6;
}

/* Form Improvements */
.form-input,
.form-textarea {
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--azul-primario);
    box-shadow: 0 0 0 3px rgba(58, 60, 118, 0.1);
}

.submit-button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-hero {
        padding: 120px 0 80px;
    }
    
    .contact-hero-content h1 {
        font-size: 36px;
    }
    
    .contact-hero-content p {
        font-size: 18px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 32px;
    }
    
    .contact-hero-content p {
        font-size: 16px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 24px;
    }
    
    .map-container h2,
    .faq-container h2 {
        font-size: 28px;
    }
    
    .faq-item {
        padding: 20px;
    }
}