* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    /*outline: 1px solid red;*/
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:"wdth" 100;
    line-height: 1.5;
  
  }


.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
  }
  
  
  .header__logo{
    max-width: 140px;
    height: auto;
  }
    
  .header__navbar{
    display: none;
  }
  
  
  .header__burger{
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  
  .header__burger span{
    width: 25px;
    height: 3px;
    background: white;
    display: block;
  }

  @media (min-width: 768px){

    /* Configuracion de Menu */
  
    .header{
      padding: 3% 5%;
      
      
    }
    
    .header__burger{
      display: none;
    }
   
  
    .header__navbar{
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }
  
    .header__nav-link{
      color: white;
      text-decoration: none;
      font-weight: bold;
      white-space: nowrap;
      
    }
  }  
  @media (min-width:1440px){

    /* Menu ----------------------------------------------------------------------*/
  
  .header__logo{
    max-width: 180px;
    
  }
  
  .header__nav-link{
    font-size: 1.2rem;
    margin-left: 1.5%;
  }
}
/*----------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------*/
.main__contenedor-imagen{
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 50vh; 
    overflow: hidden;
  }

.main__contenedor-imagen::after{
    content: "";
    position: absolute;
    width: 100%;
    inset: 0;
    background: #2f6891;
    opacity: 0.5;
    z-index: 0;
    
  }
  
.main__imagen{
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover; /* NO se deforma */
    display: block;
  }

   /* Contenido encima de la imagen -----------------------------------------------------------------------------*/
  
   .main__contenido-arriba-imagen{
     position: absolute;
     inset: 0;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: white;
     text-align: center;
     z-index: 1;
     
   }
 
   .main__titulo{
     margin: 0;
     font-family: "Bebas Neue", sans-serif;
     font-weight: 70;
     font-style: normal;
     font-size: 60px;
     line-height: 1;
     margin-top: -40%;
   }

   .lideres{
    margin: 10% 3%;
   }

   .lideres__contenedor-imagen{
    margin-bottom: 5%;
   }

   .lideres__titulo{
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    color: rgb(39, 39, 39);
    text-align: center;
    margin: 20px 0px;
  }

  .fabricacion__titulo{
    margin-bottom: 7%;
  }

  .fabricacion__lista{
    margin: 5%;
    list-style: none;
    padding-left: 0;
  }
  
  .fabricacion__lista li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
  }
  
  .fabricacion__lista li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #2f6891;
  }

  .diferencia__contenedor-imagen {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 190vh; 
    overflow: hidden;
  }

  .diferencia__contenedor-imagen::after{
    content: "";
    position: absolute;
    width: 100%;
    inset: 0;
    background: #5a5d5f;
    opacity: 0.7;
    z-index: 0;
    
  }

  .diferencia__imagen{
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover; 
    display: block;
  }

  .diferencia__sobre-imagen{
    position: absolute;
    inset: 0;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
    padding: 7% 3%;
  
    color: white;
    text-align: left;
    z-index: 1;
  }

  .diferencia__titulo,
  .diferencia__subtitulo{
    margin: 2%;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 70;
    font-style: normal;
    font-size: 50px;
    line-height: 1; 
  }

  .diferencia__titulo{
    font-size: 55px;
  }
  .diferencia__icono{
    width: 80px;
    margin: 5%;
  }

  .calidad{
    max-width: 600px;
    margin: 10px auto;
    padding: 40px 35px;
    background-color: #ffffff;
  
    /* efecto 3D */
    border-radius: 10px;
    box-shadow:
      0 4px 8px rgba(0, 0, 0, 0.15),      /* sombra externa */
      inset 0 1px 0 rgba(172, 171, 171, 0.8); /* brillo superior */
  
    position: relative;
  }
  
  .calidad__icono{
    width: 100px;
    
  }
  
  .calidad__titulo{
    font-family: "Bebas Neue", sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #5e5e5e;
    text-align: left;
    line-height: 1;
    margin: 7% 0;
   
  }
  
  .calidad__texto{
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
  }
  /*--------------------------------------------------------------------------------------------------------------
  ----------------------------------------------------------------------------------------------------------------
  ---------------------------------------------------------------------------------------------------------------*/
  @media (min-width: 425px){
    .main__contenedor-imagen{
      height: 60vh;
    }
    .main__titulo{
      margin-top: -10%;
    }
  }
 
 
  @media (min-width: 768px){
    
    .lideres{
      display: flex;
      flex-direction:unset;
      margin: 5% 1%;
      
    }

    .lideres__contenedor-imagen{
      width: 400%;
      margin: 15% 0;
      margin-right: 2%;
    }

    .fabricacion__titulo{
      margin:0 2%;
    }

    .diferencia__parte2{
      display: flex;
      flex-direction:unset;
      
    }
    .diferencia__contenedor-imagen{
      height: 100vh;
    }
    .diferencia__sobre-imagen{
      justify-content: flex-start;
      align-items: flex-start;
      text-align: left;
    }

    .diferencia__parte1{
      width: 50%;
      text-align: start;
      justify-content: right;
    }
  }
  
 