.topbar-responsive {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: 5rem;
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
}

.logo-gore {
    height: auto;
    width: 258px;
    max-width: 100%;
    padding: 5px;
}

.topbar-separador {
    width: 2px;
    height: 48px;
    background: #e0e0e0;
    border-radius: 2px;
}

.topbar-subtitulo {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00a693;
    margin: 0 0 2px 0;
}

.topbar-titulo {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a3050;
    margin: 0;
    line-height: 1.2;
}

/* Tablet / celular */
@media (max-width: 768px) {
    .topbar-responsive {
        gap: 0.8rem;
    }

    .logo-gore {
        width: 200px;
    }

    .topbar-titulo {
        font-size: 0.95rem;
    }
}

/* Celular chico */
@media (max-width: 480px) {
    .topbar-responsive {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar-separador {
        display: none;
    }

    .logo-gore {
        width: 180px;
    }

    .topbar-titulo {
        font-size: 0.9rem;
    }

    .topbar-subtitulo {
        font-size: 0.6rem;
    }
}

