/* --- TOPBAR ESTILOS --- */
.topbar {
    background-color: var(--secondary); /* El gris oscuro que definimos */
    color: white;
    height: 40px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2001; /* Por encima de la navbar */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-container {
    width: 100%;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-contact span {
    margin-right: 15px;
    font-weight: 400;
    opacity: 0.9;
}

.topbar-contact i {
    color: var(--accent); /* Tu amarillo para resaltar iconos */
    margin-right: 5px;
}

.topbar-divider {
    opacity: 0.3;
}

/* Redes Sociales en Topbar */
.topbar-socials {
    display: flex;
    gap: 15px;
}

.topbar-socials a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.7;
}

.topbar-socials a:hover {
    color: var(--accent);
    opacity: 1;
}

/* --- AJUSTE NECESARIO PARA LA NAVBAR --- */
.navbar {
    top: 40px; /* IMPORTANTE: Empuja la nav hacia abajo el alto de la topbar */
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .topbar {
        display: none; /* La ocultamos en móviles para ahorrar espacio vertical */
    }
    .navbar {
        top: 0; /* Volvemos a pegarla arriba en móviles */
    }
}
