  /* Oculta barra superior */
  .goog-te-banner-frame.skiptranslate {
      display: none !important;
  }

  body {
      top: 0px !important;
  }

  /* Oculta fondo amarillo de palabras traducidas */
  .goog-text-highlight {
      background-color: transparent !important;
      box-shadow: none !important;
  }

  /* Previene tooltips al pasar el mouse */
  *[title] {
      pointer-events: none !important;
  }

  /* Oculta la sombra del body cuando se inyecta el banner */
  body>.skiptranslate {
      display: none !important;
  }

  .text-shadow {
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .glass-effect {
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.1);
  }

  .wave-divider {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      transform: rotate(180deg);
  }

  .wave-divider svg {
      position: relative;
      display: block;
      width: calc(100% + 1.3px);
      height: 70px;
  }

  .wave-divider-top {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
  }

  .wave-divider-top svg {
      position: relative;
      display: block;
      width: calc(100% + 1.3px);
      height: 70px;
      transform: rotateY(180deg);
  }

  .bg-pattern {
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .service-card:hover .service-icon {
      transform: translateY(-10px);
  }

  .service-card:hover .service-title {
      color: #d4af37;
  }

  .project-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(10, 24, 88, 0) 0%, rgba(10, 24, 88, 0.8) 100%);
      opacity: 0;
      transition: opacity 0.5s;
      z-index: 1;
  }

  .project-card:hover::before {
      opacity: 1;
  }

  .project-card:hover .project-content {
      transform: translateY(0);
      opacity: 1;
  }

  .animate-float {
      animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
      0% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-10px);
      }

      100% {
          transform: translateY(0px);
      }
  }

  @media (max-width: 640px) {

      .wave-divider svg,
      .wave-divider-top svg {
          height: 40px;
      }
  }

  /* Estilos para Swiper */
  .swiper-button-next,
  .swiper-button-prev {
      color: #d4af37 !important;
      opacity: 0.7;
      transition: opacity 0.3s;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
      opacity: 1;
  }

  .swiper-pagination-bullet-active {
      background: #d4af37 !important;
  }

  .swiper-pagination {
      position: relative !important;
      margin-top: 10px;
  }

  @media (max-width: 640px) {

      .swiper-button-next,
      .swiper-button-prev {
          display: none;
      }
  }