.topBar {
    width: 100%;
    color: var(--text-primary);
    padding: 1.2rem 0;
}

.topBar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.topBar .contactInfo {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.topBar .contactInfo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
}

.topBar .contactInfo a i {
    font-size: 20px;
}

.topBar .socialLinks {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topBar .socialLinks a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.topBar .socialLinks a i {
    font-size: 20px;
}

.topBar .socialLinks a:hover {
    opacity: 0.8;
}

/* Responsividade */

@media (max-width: 992px) {

    /* Laptop */
    .topBar .container {
        flex-direction: column;
        gap: 10px;
    }

    .topBar .contactInfo,
    .topBar .socialLinks {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Tablet */
    .topBar {
        padding: 1rem 10px;
    }
}

@media (max-width: 480px) {

    /* Small */
    .topBar {
        display: none;
    }
}