/* ==================================================
   NITHIDEZ — RESPONSIVE
   HEADER MÓVIL
================================================== */
.menu-movil {
    display: none;
}

@media (max-width: 768px) {

    /* =========================
       HEADER
    ========================= */

    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    .header .contenedor {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 70px;
        padding: 0 16px;
    }


    /* =========================
       LOGO
    ========================= */

    .logo {
        flex-shrink: 0;
    }

    .logo h1 {
        font-size: 27px;
        letter-spacing: 4px;
    }

    .logo p {
        font-size: 7px;
        letter-spacing: 1.5px;
        margin-top: 5px;
        white-space: nowrap;
    }

    .logo-linea {
        width: 130px;
    }


    /* =========================
       MENÚ
    ========================= */

    .menu {
        display: none;
    }


    /* =========================
       ACCIONES
    ========================= */

    .acciones {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }

    .menu-movil {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid var(--cobre);
    border-radius: 6px;
    background: transparent;
    color: var(--blanco);
    cursor: pointer;
    font-size: 16px;
}

    .acciones a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
    }

}

/* ==================================================
   HERO — MÓVIL
================================================== */

@media (max-width: 768px) {

    .hero {
        padding: 90px 15px 45px;
    }

    .hero-contenido {
        display: flex;
        flex-direction: column;
        gap: 35px;
        width: 100%;
    }

    .hero-texto {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .hero-render {
        flex: none;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-render img {
        width: 100%;
        max-width: 350px;
        height: auto;
        display: block;
    }

}


/* ==================================================
   SHOWROOM — MÓVIL
================================================== */

@media (max-width: 768px) {

    .showroom-productos .contenedor {
        display: block;
        width: 100%;
    }

    .selector-productos {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        padding: 0 5px 15px;
        scrollbar-width: none;
    }
.selector-productos::after{
    content:"→";
    position:sticky;
    right:0;
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    color:var(--cobre);
    font-size:24px;
    font-weight:700;
    background:rgba(5,5,5,.9);
    border:1px solid rgba(217,123,23,.45);
    border-radius:50%;
    animation:indicadorDeslizar 1.6s ease-in-out infinite;
}
    .selector-productos::-webkit-scrollbar {
        display: none;
    }

    .selector-productos button {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .visor-producto {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .producto-escena {
        width: 100%;
        min-height: 0;
        padding: 15px;
    }

    .producto-escena img {
        width: 100%;
        height: auto;
    }

    .producto-info {
        width: 100%;
        text-align: left;
       padding: 0 14px;
    }

}

@media (max-width: 768px) {

    .productos-header h2 {
    font-size: 42px;
    line-height: 1.05;
}

  .hero h2 span {
    font-size: 34px;
    line-height: 0.98;
    letter-spacing: -1px;
}
}

@media (max-width: 768px) {

    .filosofia h2 {
        font-size: 34px;
        line-height: 1;
    }

}

@media (max-width: 768px) {

    .pilares .contenedor {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}

@media (max-width: 768px) {

    .producto-info .producto-categoria {
        font-size: 11px;
    }

    .producto-info h3 {
       font-size: 34px;
        line-height: 1.05;
    }

}
@media (max-width: 768px) {

    .experiencia-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

@media (max-width: 768px) {

    .experiencia-header h2 {
        font-size: 34px;
        line-height: 1.05;
    }

    .galeria-nithidez .titulo-seccion h2 {
    font-size: 30px;
    line-height: 1.05;
}

}

@media (max-width: 768px) {

    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

@media (max-width: 768px) {

    .galeria-grid img {
        height: auto;
        object-fit: contain;
    }

}



@media (max-width: 768px) {

    .contacto-header h2 {
        font-size: 34px;
        line-height: 1.05;
    }

}

@media (max-width: 768px) {

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

.menu-movil-panel {
    display: none;
}

@media (max-width: 768px) {

    .menu-movil-panel {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--negro-profundo);
        border-top: 1px solid rgba(217, 123, 23, .35);
        border-bottom: 1px solid rgba(217, 123, 23, .35);
        z-index: 999;
        padding: 10px 20px;
    }

    .menu-movil-panel.menu-abierto {
        display: flex;
        flex-direction: column;
    }

    .menu-movil-panel a {
        display: block;
        padding: 16px 8px;
        color: var(--blanco);
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .menu-movil-panel a::before {
        content: "•";
        color: var(--cobre);
        margin-right: 12px;
    }

    .menu-movil-panel a:last-child {
        border-bottom: none;
    }

    .menu-movil-panel a:active {
        color: var(--cobre);
    }

}

@media (max-width: 768px) {

    #producto-01 {
        scroll-margin-top: 90px;
    }

}