/* Estilos para a página de contato */

/* Estilos para a seção hero */
.contato-hero {
    background: linear-gradient(135deg, #6c5ce7, #3867d6);
    padding: 6rem 0;
    text-align: center;
    color: #fff;
}

.contato-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contato-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Estilos para seção do formulário de contato */
.contact-form-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Caixa de informações de contato */
.contact-info-box {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-box h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-info-box > p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-method i {
    font-size: 1.8rem;
    color: #6c5ce7;
    margin-right: 1.5rem;
    min-width: 40px;
}

.contact-method h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-method p {
    color: #555;
    margin: 0;
}

/* Redes sociais */
.social-media h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f1f1f1;
    border-radius: 50%;
    color: #6c5ce7;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #6c5ce7;
    color: #fff;
}

/* Caixa do formulário */
.form-box {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-box h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.btn-primary {
    display: inline-block;
    background-color: #6c5ce7;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5649c2;
}

/* Seção de perguntas frequentes */
.faq-section {
    padding: 5rem 0;
    background-color: #fff;
}

.faq-section h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    cursor: pointer;
}

.accordion-header h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.accordion-icon {
    color: #6c5ce7;
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
    color: #555;
    line-height: 1.6;
    padding-bottom: 1.5rem;
}

.accordion-item.active .accordion-header {
    background-color: #f0eeff;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-top: 1.5rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box,
    .form-box {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contato-hero {
        padding: 4rem 0;
    }
    
    .contato-hero h2 {
        font-size: 2rem;
    }
    
    .contact-form-section,
    .faq-section {
        padding: 3rem 0;
    }
    
    .accordion-header {
        padding: 1.2rem;
    }
    
    .accordion-header h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .contact-method {
        flex-direction: column;
    }
    
    .contact-method i {
        margin-bottom: 0.8rem;
        margin-right: 0;
    }
    
    .social-icons {
        justify-content: space-between;
    }
} 