/* Estilos específicos para a página de Contato */

.page-header {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('Arquivos site/Elementos Gráficos/Imagem de fundo 1 - cabe_alho.jpg') center/cover;
    background-attachment: fixed;
    padding: 60px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #2c1810;
    margin-bottom: 20px;
    font-family: 'Pfennig', 'Inter', 'Georgia', serif;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Pfennig', sans-serif;
}

.contact-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95), rgba(233, 236, 239, 0.95)),
                url('Arquivos site/Elementos Gráficos/fundo pagina inicial.jpg') center/cover;
    background-attachment: fixed;
    padding: 60px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-card,
.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #D4AF37;
}

.contact-info-card h2,
.contact-form-card h2 {
    font-size: 1.8rem;
    color: #2c1810;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Pfennig', 'Inter', 'Georgia', serif;
}

.contact-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #8B4513;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Pfennig', 'Inter', 'Georgia', serif;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
    font-family: 'Pfennig', sans-serif;
}

/* Formulário */
.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-family: 'Pfennig', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Pfennig', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.btn-submit {
    background: linear-gradient(135deg, #8B4513, #D4AF37);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

/* Seção de artigos */
.article-submission {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(139, 69, 19, 0.95)),
                url('Arquivos site/Elementos Gráficos/fundo pagina inicial.jpg') center/cover;
    background-attachment: fixed;
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.article-submission h2 {
    font-size: 2.2rem;
    color: #D4AF37;
    margin-bottom: 20px;
    font-family: 'Pfennig', 'Inter', 'Georgia', serif;
}

.article-submission p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
    font-family: 'Pfennig', sans-serif;
}

.article-form-container {
    margin-top: 30px;
}

.btn-article {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #2c1810;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-article:hover {
    background: linear-gradient(135deg, #B8941F, #9A7A1A);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Seção de colaboração */
.collaboration-section {
    margin-top: 60px;
}

.collaboration-section h2 {
    font-size: 2.2rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Pfennig', 'Inter', 'Georgia', serif;
}

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

.collaboration-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #D4AF37;
}

.collaboration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.collaboration-card h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Pfennig', 'Inter', 'Georgia', serif;
}

.collaboration-card p {
    color: #666;
    line-height: 1.6;
    font-family: 'Pfennig', sans-serif;
}

/* Responsividade */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
    
    .article-submission {
        padding: 30px 20px;
        margin: 0 20px 40px;
    }
    
    .article-submission h2 {
        font-size: 1.8rem;
    }
    
    .collaboration-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .collaboration-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }
    
    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .btn-submit,
    .btn-article {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .article-submission {
        padding: 25px 15px;
    }
    
    .article-submission h2 {
        font-size: 1.5rem;
    }
    
    .collaboration-section h2 {
        font-size: 1.8rem;
    }
}

/* Animações */
.contact-info-card,
.contact-form-card,
.collaboration-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.contact-form-card {
    animation-delay: 0.2s;
}

.collaboration-card:nth-child(2) {
    animation-delay: 0.1s;
}

.collaboration-card:nth-child(3) {
    animation-delay: 0.2s;
}

.collaboration-card:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 