/* Estilos específicos da página de contato */
body { background-color: var(--bg-light); }

.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}
.page-header h1 { font-weight: 700; margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.contact-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 3rem;
    margin-top: -40px; /* Efeito de sobreposição ao header */
    position: relative;
    z-index: 10;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #e0e0e0;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 105, 217, 0.1);
}

.info-box { padding: 2rem 0; }
.info-item { display: flex; margin-bottom: 2rem; }
.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 105, 217, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}
.info-content h5 { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.3rem; color: var(--primary-color); }
.info-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }
.info-content a { color: var(--accent-color); text-decoration: none; font-weight: 500; }

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 300px;
    margin-top: 2rem;
}
