/* HEADER */
.main-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px 0 32px;
    background: transparent;
}

.header-left .logo {
    width: 64px;
    height: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-right a {
    color: #ffd900;
    text-decoration: none;
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 1.1px;
    padding: 7px 18px;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
}

.header-right a:hover {
    background: #ffd900;
    color: #111;
}

.menu-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    outline: none;
}
.menu-btn span {
    display: block;
    width: 28px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 800px) {
    .main-header {
        padding: 10px 8px 0 8px;
    }
    .header-left .logo { width: 46px; }
    .header-right a { font-size: 0.98rem; padding: 6px 12px; }
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    background: #000; /* Fondo sólido para que no se vea transparente al hacer scroll */
    box-shadow: 0 2px 16px #0006;
    /* padding ya lo tienes */
}

/* Para que el contenido no quede escondido debajo del header */
body {
    padding-top: 80px; /* ajusta este valor a la altura real de tu header */
}
@media (max-width: 820px) {
    body {
        padding-top: 62px; /* ajusta según el header en móvil */
    }
}
