/* Fale Conosco Specific Styles */
.fale-conosco-container {
    padding: 8rem 0 4rem;
    background: #f8fafc;
    min-height: 100vh;
}

.fale-conosco-header {
    text-align: center;
    margin-bottom: 4rem;
}

.fale-conosco-header h1 {
    font-size: 3.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.fale-conosco-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.contact-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card-header h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-card-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.contact-channel:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.channel-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.channel-info h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.channel-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.channel-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.channel-text {
    color: #374151;
    margin-bottom: 0.25rem;
}

.channel-note {
    color: #6b7280;
    font-size: 0.8rem;
    margin: 0;
}

.tip-card {
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    border: 1px solid #93c5fd;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.tip-content h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tip-content p {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact-form-section {
    display: flex;
    flex-direction: column;
}

.form-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    height: fit-content;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.submit-button {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.button-icon {
    font-size: 1.2rem;
}

.form-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.8rem;
    margin: 1rem 0 0;
}

.faq-section {
    margin-top: 3rem;
}

.faq-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.faq-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.faq-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-sidebar {
        order: 2;
    }
    
    .contact-form-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .fale-conosco-container {
        padding: 6rem 1rem 2rem;
    }

    .fale-conosco-header h1 {
        font-size: 2.5rem;
    }

    .fale-conosco-subtitle {
        font-size: 1.1rem;
    }

    .form-card,
    .faq-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-channel {
        flex-direction: column;
        text-align: center;
    }

    .channel-icon {
        align-self: center;
    }

    .tip-card {
        flex-direction: column;
        text-align: center;
    }

    .tip-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .fale-conosco-header h1 {
        font-size: 2rem;
    }

    .contact-card,
    .form-card,
    .faq-card {
        padding: 1rem;
    }

    .faq-item {
        flex-direction: column;
        text-align: center;
    }

    .faq-icon {
        align-self: center;
    }

    .submit-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animation for form elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card,
.form-card,
.faq-card {
    animation: fadeInUp 0.6s ease-out;
}

.contact-channel,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

.contact-channel:nth-child(1) { animation-delay: 0.1s; }
.contact-channel:nth-child(2) { animation-delay: 0.2s; }
.contact-channel:nth-child(3) { animation-delay: 0.3s; }

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }