/* Responsive CSS para a página de contato */

/* Estilos base para garantir consistência */
.contact-section, .map-section, .faq-section {
    overflow: hidden;
}

/* Media queries para tablets e dispositivos menores */
@media (max-width: 992px) {
    /* Ajustes já existem no style.css para esta resolução */
    /* Apenas complementos específicos */
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
    }
    
    .contact-form {
        margin-top: 30px;
    }
    
    .map-container iframe {
        height: 400px;
    }
}

/* Media queries para dispositivos móveis */
@media (max-width: 768px) {
    .contact-section, .map-section, .faq-section {
        padding: 70px 0;
    }
    
    .contact-section::before,
    .contact-section::after,
    .map-section::before,
    .map-section::after,
    .faq-section::before,
    .faq-section::after {
        height: 80px; /* Reduz a altura das ondas decorativas */
    }
    
    .contact-info h2,
    .contact-form h2,
    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .contact-info p,
    .section-header p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .contact-methods {
        gap: 15px;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .method-details h3 {
        font-size: 1rem;
    }
    
    .method-details p {
        font-size: 0.85rem;
    }
    
    .social-links h3 {
        font-size: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
    .contact-section, .map-section, .faq-section {
        padding: 50px 0;
    }
    
    .contact-section::before,
    .contact-section::after,
    .map-section::before,
    .map-section::after,
    .faq-section::before,
    .faq-section::after {
        height: 60px; /* Reduz ainda mais a altura das ondas */
    }
    
    .contact-info h2,
    .contact-form h2,
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .contact-info p {
        font-size: 0.85rem;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
    }
    
    .method-details h3 {
        font-size: 0.95rem;
    }
    
    .method-details p {
        font-size: 0.8rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
}