@media (max-width: 480px) {
    .banner-one__moc {
      display: block;
      position: relative;
      top: auto;
      right: auto;
      max-width: 40%;
    }
  }

  .banner-one__text {
    
    color: #262626;
    margin-top: 25px;
  }



  @media (max-width: 767px) {
    .banner-two .container {
      padding-top: 150px;
      padding-bottom: 0px;
    }
  }


  #marcas {
    padding-top: 0px !important;
  }
  
  /* Mobile: hasta 768px */
  @media screen and (max-width: 768px) {
    #marcas {
      padding-top: 20px !important;
    }

    .banner-two {
      position: relative;
      background-color: #ffffff;
      background-image: url(../images/background/banner-bg-1-1.png);
      background-repeat: no-repeat;
      background-size: cover;
      background-position:
    top center;
      margin-bottom: 0px !important;
    }
  }


  .video-modal {
    display: flex !important;
    position: fixed !important;
    z-index: 9999 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.85) !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
  }
  
  .video-modal__content {
    position: relative !important;
    width: 100% !important;
    max-width: 720px !important;
    background: #fff !important;
    border-radius: 16px !important;
    padding: 20px !important;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5) !important;
    text-align: center !important;
  }
  
  .video-modal__title {
    font-size: 24px !important;
    margin-bottom: 15px !important;
    color: #222 !important;
  }
  
  .video-modal__title span {
    color: #ff5e14 !important;
  }
  
  .video-modal__video iframe {
    width: 100% !important;
    height: 360px !important;
    border-radius: 8px !important;
  }
  
  .video-modal__close {
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
    font-size: 28px !important;
    font-weight: bold !important;
    color: #333 !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
  }
  
  .video-modal__close:hover {
    color: #ff5e14 !important;
  }
  
  @media (max-width: 576px) {
    .video-modal__content {
      padding: 15px !important;
    }
  
    .video-modal__video iframe {
      height: 220px !important;
    }
  
    .video-modal__title {
      font-size: 20px !important;
    }
  }

  .video-modal {
    display: none !important;
  }
  
  .video-modal.is-visible {
    display: flex !important;
  }
  



 .banner-twoprodu .container {
  padding-top: 180px;
  padding-bottom: 40px;
  position: relative;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.titulo-centrado {
  text-align: center;
  padding: 10px;
}


.company-logo {
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.company-logo:hover,
.company-logo:active {
  transform: scale(0.95);
  filter: brightness(1.1);
}

/* --- ESTILOS GENERALES (Desktop) --- */
    .lang-dropdown {
        position: relative;
        display: inline-block;
        margin-left: 15px;
        cursor: pointer;
    }

    .lang-dropbtn {
        font-weight: bold;
        padding: 10px 0;
        display: block;
        color: inherit; 
    }

    .lang-dropdown-content {
        display: none; 
        position: absolute;
        background-color: #ffffff;
        min-width: 120px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 999;
        top: 100%; 
        left: 0;
        
        /* Borde y detalle en verde */
        border: 1px solid #e0e0e0;
        border-top: 3px solid #0fa538; 
        border-radius: 4px;
    }

    .lang-dropdown-content a {
        color: #333 !important;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
        font-size: 14px;
        transition: all 0.3s ease;
        border-bottom: 1px solid #f0f0f0;
    }

    .lang-dropdown-content a:last-child {
        border-bottom: none;
    }

    /* Color Hover #0fa538 */
    .lang-dropdown-content a:hover {
        background-color: #f9f9f9;
        color: #0fa538 !important;
        padding-left: 20px;
    }

    /* Mostrar menú al hacer hover (Desktop) */
    .lang-dropdown:hover .lang-dropdown-content {
        display: block;
    }

    /* --- ESTILOS MOBILE (Pantallas menores a 768px) --- */
    @media screen and (max-width: 768px) {
        .lang-dropdown {
            display: block; /* Ocupa todo el ancho */
            margin-left: 0; 
            width: 100%;
            border-bottom: 1px solid #ddd;
        }

        .lang-dropbtn {
            padding: 15px; 
            width: 100%;
        }

        .lang-dropdown-content {
            position: static; /* Se acomoda en el flujo, no flota */
            width: 100%;      
            box-shadow: none; 
            border: none;     
            border-top: none; 
            padding-left: 15px; /* Indentación visual */
            background-color: #f4f4f4; /* Fondo gris suave */
        }
        
        /* Despliega al tocar en mobile */
        .lang-dropdown:hover .lang-dropdown-content, 
        .lang-dropdown:active .lang-dropdown-content {
            display: block;
        }
    }