/* ----- Estructura general ----- */
.container.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #;
    color: white;
    position: relative;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo .dot {
    width: 10px;
    height: 10px;
    background: #ff4500;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

/* ----- Navegación ----- */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ff4500;
}

/* ----- Botón menú (móvil) ----- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* ----- Responsivo ----- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 25px;
        background: #111;
        border-radius: 8px;
        padding: 10px 20px;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}