body {
  font-family: 'Lato', sans-serif !important;
  margin: 0;
  padding: 0;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  }
  
  header {
    background-color: #fff;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    margin-top: 10px;
  }
  
  .logo-link {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .logo {
    width: 5cm;
    height: 0,7cm;
  }
  
  
  .banner h1 {
    margin: 0;
  }
  
  .navbar-top {
    background: linear-gradient(to right, #22225f, #2eb2a7);
    color: white;
    display: flex;
    justify-content: flex-end; /* Alinea todos los elementos hacia la derecha */
    align-items: center;       /* Alinea verticalmente los elementos en el centro */
    padding: 10px 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .navbar-top .flags {
    display: flex;
    gap: 10px;
    align-items: center; 
    margin-right: 5px;
    margin-top: -5px;
  }
  
  .navbar-top .flags img {
    width: 25px;
    height: 15px;
    object-fit: cover;
  
  }
  
  .btn-contacto {
    background: linear-gradient(90deg, #262c5e, #28a694);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 4px;
    margin-top: -9px;
    display: inline-block;
    text-decoration: none;
    transition: background-position 0.4s;
    background-size: 200%;
  }
  
  .btn-contacto:hover {
    background-position: right;
    text-decoration: none;
  }
  
  @media screen and (max-width: 768px) {
    .btn-contacto {
      margin-top: 10px; /* Ajuste para dispositivos móviles */
    }
  }
  
  .btn-contacto:hover {
    background: linear-gradient(to right, #1f244c, #299c87);
    text-decoration: none;
  }
  
  .navbar-top .links {
    display: flex;
    gap: 20px;     
    margin-left: auto;         
  }
  
  .large-bar {
    font-size: 20px; 
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    margin-top: -3px;
  }
  
  .navbar-top .links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
  }
  
  .navbar-top .links a:hover {
    text-decoration: underline;
  }
  
  /* Estilos responsivos */
    @media (max-width: 768px) {
      .navbar-top {
        flex-direction: column; 
        align-items: center; 
        background: linear-gradient(to bottom, #22225f, #2eb2a7);
      }
    
      .navbar-top .links {
        flex-direction: column; 
        gap: 3px; 
        text-align: center; 
        margin: 0; 
        font-size: 10px; 
        align-items: center;
      }
    
      .navbar-top .flags {
        margin-bottom: 10px; 
      }

      header{
        top: -20px;
        text-align: center;
      }
  
      body{
        margin-top: 200px;
      }

      .logo-link{
        margin-top: -50px;
        margin-left: -20px;
      }
    }
  
  
  @media (max-width: 992px) { /* Para tablets */
    .navbar-top {
      padding: 8px; 
      left: 0;
    }
  
    .navbar-top .flags img {
      width: 30px; 
      height: 20px;
      margin-top: 2px;
    }
  
    .navbar-top .links a {
      font-size: 14px; 
      text-align: center;
      margin-top: 2px;
    }
  }
  

  main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .proveedor {
    margin: 20px;
    text-align: center;
    transition: transform 0.8s ease;
    flex: 0 0 calc(33.33% - 40px);
  }
  
  .proveedor:hover {
    transform: scale(1.1);
  }
  
  .proveedor img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .proveedor h2 {
    margin-top: 10px;
    color: #333;
  }