* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Evita scroll horizontal */
    font-family: 'Poppins', sans-serif;
  }
  
  /* HEADER */
  .main-header-gt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px 10px 40px;
    border-bottom: 1px solid #eee;
    background: #fff;
  }
  
  .logo-nav-gt {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .logo-gt {
    height: 48px;
    margin-right: 30px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #0a1f5b;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.2s;
  }
  
  nav ul li a:hover {
    color: #231f20;
  }
  
  .search-lang-gt {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .lang-gt {
    font-size: 1rem;
    color: #0a1f5b;
    font-weight: 700;
  }
  
  .search-form-gt {
    display: flex;
    align-items: center;
    background: #faf8fc;
    border-radius: 24px;
    padding: 4px 12px;
    border: 1px solid #e0d7f3;
  }
  
  .search-form-gt input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    padding: 6px 8px;
  }
  
  .search-form-gt button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #0b1f57;
    cursor: pointer;
  }
  
  /* SLIDER CONTAINER */
  .slider-container-gt {
    height: auto;
    min-height: 320px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
  }
  
  /* TEXTO CENTRAL SOBRE EL SLIDER */
  .slider-overlay-gt {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 3;
    text-align: center;
    color: #fff;
    background: rgba(10, 34, 90, 0.38); /* Azul más puro y oscuro */
    padding: 16px 32px;
    border-radius: 12px;
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    padding-bottom: 140px !important;
}
  
  .slider-overlay-gt h1 {
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 8px 0;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  }
  
  .slider-overlay-gt p {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  
  /* SLIDES */
  .slider-gt {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
    height: 100%;
    align-items: stretch;
    justify-content: flex-start;
    overflow-x: unset;
  }
  
  .slide-gt {
    min-width: 25vw;
    min-height: 520px !important;
    height: 100% !important;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
  }
  
  .slide-gt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 67, 90, 0.54);
    z-index: 1;
}
  
  .slide-gt::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 2;
    pointer-events: none;
  }
  
  .slide-gt:hover::before {
    background: rgba(32, 67, 90, 0.38);
  }
  
  .slide-gt:hover::after {
    transform: rotate(45deg) translateX(100%);
  }
  
  .slide-gt:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(3, 9, 65, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.1);
  }
  
  /* CONTENIDO DE CADA SLIDE */
  .slide-content-gt {
    position: relative;
    z-index: 3;
    padding: 40px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin-top: 0 !important;
    justify-content: flex-start;
    flex: 1 1 auto;
    padding-top: 0 !important;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 24px;
    padding-top: 170px !important;
    padding-bottom: 0 !important;
    gap: 0 !important;
}
  
  .slide-content-gt h2 {
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0 0 12px 0;
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
    text-align: center;
    width: 100%;
    margin-top: 0;
  }
  
  .slide-content-gt .desc-izquierda {
    font-size: 0.88rem;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
    text-align: justify;
    width: 90%;
    max-width: 340px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .slide-gt:hover .desc-izquierda {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .slide-content-gt p {
    font-size: 0.95rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    text-align: justify;
    font-weight: 400;
  }
  
  /* BOTÓN */
  .slide-content-gt .slide-arrow-gt {
    display: none !important;
}
.slide-content-gt .slide-flecha-abajo {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    margin-top: 32px;
    margin-bottom: 0;
    font-size: 2.5rem;
    color: #7c3aed;
    background: none;
    border: none;
    cursor: default;
    transition: color 0.2s;
}
.slide-content-gt .slide-flecha-abajo:hover {
    color: #7c3aed;
    transform: none;
}
  
  /* FLECHAS */
  .slider-arrow-gt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #091d54;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(44, 0, 80, 0.18);
    transition: background 0.2s;
}
.slider-arrow-gt:hover {
    background: #081d58;
}
.slider-arrow-gt.left {
    left: 24px;
}
.slider-arrow-gt.right {
    right: 24px;
}
  
  /* RESPONSIVE */
  @media (max-width: 1200px) {
    .slide-gt {
      min-width: 50vw;
    }
  }
  
  @media (max-width: 800px) {
    .main-header-gt {
      flex-direction: column;
      gap: 16px;
      padding: 12px 10px;
    }
  
    .logo-nav-gt {
      flex-direction: column;
      gap: 12px;
    }
  
    .slider-overlay-gt h1 {
      font-size: 2.2rem;
    }
  
    .slider-gt {
      height: 320px;
    }
  
    .slide-gt {
      height: 320px;
      min-width: 100vw;
    }
  }
  
.logo-empresa-circular {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
  