/* ===== PÁGINA DE CONTATO ===== */
.page-header {
    padding: 60px 0 20px;
    background: transparent;
    text-align: left;
}
.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary-color, #1e1e2a);
}
.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-section {
    padding: 40px 0 80px;
    background: #f8f9fa;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}
.contact-form-wrapper .form-group {
    margin-bottom: 1.5rem;
}
.contact-form-wrapper label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e1e2a;
}
.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
}
.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.contact-form-wrapper textarea {
    resize: vertical;
}
.btn-block {
    width: 100%;
    margin-top: 0.5rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
}
.contact-info-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e1e2a;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eef2f6;
}
.info-item:last-child {
    border-bottom: none;
}
.info-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.info-item div {
    flex: 1;
}
.info-item strong {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 3px;
}
.info-item a,
.info-item span {
    color: #1e1e2a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.info-item a:hover {
    color: #0ba360;
}

/* Alertas */
.contact-alert {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    font-weight: 600;
    line-height: 1.5;
}
.contact-alert i {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.contact-alert-success {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}
.contact-alert-error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

/* Responsividade */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    .contact-form-wrapper,
    .contact-info-card {
        padding: 1.5rem;
    }
}
@media (max-width: 480px) {
    .page-header {
        padding: 40px 0 10px;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
    .contact-section {
        padding: 20px 0 60px;
    }
    .contact-form-wrapper,
    .contact-info-card {
        padding: 1.2rem;
    }
}