/* =====================================================
   ESTILO-MOVIL.CSS — Responsividad Global
   Star Citizen España (SCESP)
   ===================================================== */

@media (max-width: 768px) {
    /* Barra de Navegación Móvil */
    .nav-bar {
        justify-content: space-between;
        padding: 10px 20px;
        flex-direction: row;
        flex-wrap: wrap;
        min-height: 70px;
        height: auto;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .nav-logo {
        height: 35px;
    }

    .nav-title {
        display: block;
        font-size: 0.95rem;
        margin-top: 6px;
        font-family: var(--font-main);
        color: var(--color-white);
        text-shadow: 2px 2px 6px black;
    }

    .nav-links {
        width: 100%;
        position: static;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .nav-links.open {
        max-height: 600px;
        padding: 5px 0 15px 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 14px;
        width: 100%;
    }

    /* Marco Principal Adaptativo */
    .content-glass {
        margin: 15px 12px 30px 12px;
        padding: 0 12px 20px 12px;
    }

    /* Títulos y Secciones */
    .section {
        padding: 30px 15px;
    }

    .section-title .line {
        width: 60%;
    }

    /* Botones Adaptativos */
    .btn-glass {
        width: 100%;
        min-width: auto;
        padding: 14px;
    }

    /* Footer Común */
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
}
