/* Contact Bar */
.contact-bar {
    position: relative;
    z-index: 10;
    margin-top: -50px; /* Faz a barra subir um pouco sobre o hero */
    padding: 0 px;
}

.bar-inner {
    background: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 1.3rem;
}

.bar-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

.bar-text p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
}

.bar-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.btn-mini {
    background: var(--dark);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-mini:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 1024px) {
    .bar-inner { padding: 20px; }
    .bar-divider { display: none; }
}

@media (max-width: 768px) {
    .contact-bar { margin-top: 20px; }
    .bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        border-radius: 32px;
    }
    .bar-item.bar-cta { width: 100%; }
    .btn-mini { width: 100%; justify-content: center; padding: 16px; }
}
