@media screen and (max-width: 1600px)
{
    /* ================================
   Menú Productos (aislado)
   Prefijo: pm-
================================ */

/* Contenedor general */
.pm-menu {
    position: relative;
    display: inline-block;
    font-family: inherit;
    width: 100%;
    height: 50px;
}

/* Botón principal "Productos" */
.pm-btn {
     width: 100%;
        height: 50px;
        background-color: #0051c9;
        color: white;
        font-weight: bold;
        align-items: center;
        justify-content: center;
        top: 0px;
        border: 2px white solid;
        font-size: 14px;
}

.pm-btn:hover {
    background: #0b5ed7;
}

.pm-btn-arrow {
    font-size: 0.8rem;
}

/* Lista principal */
.pm-list {
    position: absolute;
    width: 100%;
    top: 45px;
    left: 0;
    margin: 4px 0 0 0;
    padding: 6px 0;
    list-style: none;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    min-width: 220px;
    display: none;
    z-index: 1000;
    font-weight: bold;
    color: #0059C1;
    box-shadow:  0px -1px 10px rgba(0, 0, 0, 1),
      0px 1px 10px rgba(0, 0, 0, 1),
      1px 0px 10px rgba(0, 0, 0, 1),
      -1px 0px 10px rgba(0, 0, 0, 1);
}

/* Mostrar menú principal al hover del contenedor */
.pm-menu:hover > .pm-list {
    display: block;
}

/* Ítems y enlaces */
.pm-item {
    position: relative;
    list-style: none;
    
    
}

.pm-link {
    display: block;
    padding: 6px 14px;
    font-size: 0.9rem;
    color: #0059C1;
    text-decoration: none;
    white-space: nowrap;
    
}

.pm-link:hover {
    background-color: #ED6A12;
    color: white;
}

/* Submenús (niveles internos) */
.pm-submenu {
    position: absolute;
    width: 100%;
    top: -2px;
    left: 100%;
    margin-top: -4px;
    padding: 6px 0;
    list-style: none;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    min-width: 220px;
    display: none;
    z-index: 1000;
    box-shadow:  0px -1px 10px rgba(0, 0, 0, 1),
      0px 1px 10px rgba(0, 0, 0, 1),
      1px 0px 10px rgba(0, 0, 0, 1),
      -1px 0px 10px rgba(0, 0, 0, 1);
}

/* Mostrar submenú al hover del li padre */
.pm-has-children:hover > .pm-submenu {
    display: block;
    box-shadow:  0px -1px 10px rgba(0, 0, 0, 1),
      0px 1px 10px rgba(0, 0, 0, 1),
      1px 0px 10px rgba(0, 0, 0, 1),
      -1px 0px 10px rgba(0, 0, 0, 1);
}

/* Flecha indicando submenú */
.pm-has-children > .pm-link::after {
    content: "▶";
    float: right;
    font-size: 0.7rem;
    opacity: 0.6;

}

/* Imagen de marca */
.pm-brand-img {
    max-width: 90%;
    height: auto;
    display: block;
    padding: 4%;
    
    position: relative;
    left: 13px;
    
}

.pm-brand-img:hover {
     transform: scale(1.05);
     
}

/* Ajuste fino para que el item con imagen no cambie tanto en hover */
.pm-item:hover .pm-brand-img:hover {
    /* Si quieres efecto al pasar el mouse sobre la marca, agrégalo aquí */
    /* por ejemplo: transform: scale(1.03); 
    box-shadow: inset 0px -3px rgba(66, 247, 56, 1),
     inset 0px 3px rgba(66, 247, 56, 1),
     inset 3px 0px rgba(66, 247, 56, 1),
     inset -3px 0px rgba(66, 247, 56, 1);*/
}

}