@media screen and (max-width: 1280px)
{

    html, body 
    {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        background-color: white;
    }
    
    #tabla_principal_menu /* Diseño de la tabla prinicpal top que contiene el nav */
    {
        width: 100%;
        height: 50px;
        border: 0px black solid;
        background-color: #0059C1;
    }

    #orden_div_menu /*orden logico de los divs del menu principal por cantidad de items por fila*/
    {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;       /* Centrado vertical */
        justify-content: center;   /* Centrado horizontal */
        padding-left: 0%;
    }

    #divs_generales_menu /* Estructura de los divs dentro del menu que le dan forma de estructura */
    {
        width: 100%;
        border: 0px blue solid;
    }

    #a_textos_proteccion_electrica
    {
        color: #0059C1;
      font-weight: bold;
      margin-bottom: 18px;
    }

    .img_marca_subcategoria
    {
      padding: 10%;
      margin: 0 auto;
      width: 100%;
    }

    .img_marca_subcategoria:hover
    {
        transform: scale(1.1);
    }
    
    .tabla_titulo_categorias_subcategoria
    {
        width: 80%;
    }

    #orden_div_menu_productos
    {
      display: grid;
        grid-template-columns: repeat(4, 1fr);
        align-items: center;       /* Centrado vertical */
        justify-content: center;   /* Centrado horizontal */
        padding-left: 0%;
    }

     /*Footer*/

    .footer
    {
      background-color: #0059C1;
      padding-left: 5%;
      padding-right: 5%;
      padding-bottom: 2%;
      padding-top: 3%;
    }

    .container
    {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .payment-methods
    {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .contact-info, .information, .my-account, .location-map, .payment-method, .copyright
    {
      color: white;
      font-size: 12px;
      font-weight: bold;
      padding-left: 5%;
      padding-right: 5%;
      padding-top: 5%;
      padding-bottom: 0%;
    }

    .texto_maps
    {
      color: white;
      font-size: 12px;
      font-weight: bold;
    }

    .li_horizontal
    {
       display: flex;
      list-style: none; /* opcional, para quitar los puntos */
      padding: 0;
      margin: 0;
    }

    .li_metodo_pago
    {
      padding-right: 5%;
      padding-bottom: 5%;
      padding-top: 0%;
    }

    #img_marca_prom_1
    {
      margin: 0 auto;
      width: 100%;
    }

    #img_marca_prom_1:hover
    {
      transform: scale(1.1);
    }

    .texto_div_contenedores
    {
      color: #0051C9;
      font-weight: bold;
      text-decoration: none;
    }

    .div_contenedor_texto
    {
      width: 90%;
      margin: auto 0px; 
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .orden_div_menu_marcas
    {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;       /* Centrado vertical */
        justify-content: center;   /* Centrado horizontal */
        padding-left: 3%;
    }
}