/* ===== VARIABLES GH 2026 ===== */
:root {
  --gh-navy: #081521;
  --gh-navy-dark: #030811;
  --gh-yellow: #ffd447;
  /* Amarillo GH Stand */
  --gh-yellow-strong: #ffc525;
  --gh-light-bg: #f7f8fb;
  --gh-border-soft: rgba(8, 21, 33, 0.08);
  --gh-text-main: #0a1020;
  --gh-text-soft: #647189;
  --gh-radius-lg: 20px;
  --gh-radius-xl: 28px;
  --gh-transition: 200ms ease;
}

/* ===== TOPBAR ===== */

.gh-topbar {
  background: var(--gh-navy-dark);
  color: #f4f7ff;
  font-size: 0.85rem;
  padding: 8px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gh-topbar .topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.gh-topbar .topbar-item i {
  font-size: 0.9rem;
  color: var(--gh-yellow);
}

.gh-topbar .topbar-link {
  color: #f4f7ff;
  text-decoration: none;
  transition: color var(--gh-transition);
}

.gh-topbar .topbar-link:hover {
  color: var(--gh-yellow);
}

.gh-topbar .topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gh-yellow);
  color: #111;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: transform var(--gh-transition), box-shadow var(--gh-transition),
    background var(--gh-transition);
}

.gh-topbar .topbar-cta i {
  color: #111;
}

.gh-topbar .topbar-cta:hover {
  transform: translateY(-1px);
  background: var(--gh-yellow-strong);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* ===== NAVBAR / HEADER ===== */

.gh-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--gh-border-soft);
  padding: 12px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gh-header.is-scrolled .navbar {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* logo */
.logo-img {
  height: 54px;
  width: auto;
  display: block;
}

/* links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--gh-text-soft);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 2px;
  transition: color var(--gh-transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: var(--gh-yellow);
  transition: width var(--gh-transition);
}

.nav-link:hover {
  color: var(--gh-text-main);
}

.nav-link:hover::after {
  width: 100%;
}

/* redes en header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 21, 33, 0.06);
  border: 1px solid rgba(8, 21, 33, 0.15);
  color: var(--gh-text-main);
  text-decoration: none;
  transition: background var(--gh-transition), color var(--gh-transition),
    transform var(--gh-transition), box-shadow var(--gh-transition);
}

.header-social-link i {
  font-size: 0.95rem;
}

.header-social-link:hover {
  background: var(--gh-yellow);
  color: #111;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* botón Cotizar */
.btn-cotizar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--gh-yellow);
  color: #111;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  transition: transform var(--gh-transition), box-shadow var(--gh-transition),
    background var(--gh-transition);
}

.btn-cotizar:hover {
  background: var(--gh-yellow-strong);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.btn-cotizar .btn-icon {
  font-size: 1rem;
}

/* menú móvil básico (usando tus clases) */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    background: rgba(5, 9, 18, 0.97);
    flex-direction: column;
    padding: 18px 24px 32px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-links.active,
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    color: #e4e7ff;
  }

  .nav-link::after {
    background: var(--gh-yellow);
  }

  .header-actions {
    gap: 10px;
  }
}

/* ===== HERO 2026 ===== */

.hero-2026 {
  position: relative;
  min-height: calc(100vh - 70px);
  padding: 110px 5vw 90px;
  background: radial-gradient(circle at top left, #172949 0, #050812 60%, #03060c 100%);
  color: #f4f7ff;
  overflow: hidden;
}

/* imagen de fondo */
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05) brightness(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(5, 10, 20, 0.45), rgba(5, 8, 18, 0.55)),
    radial-gradient(circle at 10% 20%, rgba(255, 212, 71, 0.10), transparent 55%);
  z-index: 1;
}

/* layout interno */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 75vh;
}

/* columna izquierda */
.hero-left {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gh-yellow);
  margin-bottom: 10px;
}

.hero-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gh-yellow);
  opacity: 0.7;
}

.hero-title {
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 22px;
  max-width: 820px;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: var(--gh-yellow);
  text-shadow: 0 0 28px rgba(255, 212, 71, 0.35);
}

/* texto animado */
.hero-subtitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(244, 247, 255, 0.8);
  margin-bottom: 18px;
  min-height: 20px;
}

.typed-cursor {
  display: inline-block;
  margin-left: 3px;
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  50.01%,
  100% {
    opacity: 0;
  }
}

.hero-lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(232, 237, 255, 0.9);
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(230, 236, 255, 0.92);
}

.hero-bullets i {
  color: var(--gh-yellow);
  margin-top: 3px;
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--gh-yellow);
  color: #111;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
  transition: transform var(--gh-transition), box-shadow var(--gh-transition),
    background var(--gh-transition);
}

.btn-cta-primary:hover {
  background: var(--gh-yellow-strong);
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(244, 247, 255, 0.45);
  color: rgba(244, 247, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  background: linear-gradient(120deg,
      rgba(8, 20, 40, 0.65),
      rgba(8, 14, 28, 0.85));
  transition: border-color var(--gh-transition), background var(--gh-transition),
    transform var(--gh-transition);
}

.btn-cta-ghost:hover {
  border-color: var(--gh-yellow);
  background: linear-gradient(120deg,
      rgba(8, 20, 40, 0.9),
      rgba(8, 14, 28, 0.95));
  transform: translateY(-1px);
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(211, 219, 255, 0.8);
}

.meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gh-yellow);
  box-shadow: 0 0 14px rgba(255, 212, 71, 0.9);
}


/* barra de confianza abajo */
.hero-trust-bar {
  position: relative;
  z-index: 2;
  margin: 26px auto 0;
  max-width: 1200px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(5, 10, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(222, 229, 255, 0.85);
  backdrop-filter: blur(12px);
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gh-yellow);
  box-shadow: 0 0 16px rgba(255, 212, 71, 0.9);
  display: inline-block;
  margin-right: 8px;
}

/* ===== RESPONSIVE HERO ===== */

@media (max-width: 992px) {
  .hero-2026 {
    padding: 100px 5vw 70px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-trust-bar {
    border-radius: 16px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-2026 {
    padding: 96px 18px 60px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-bullets {
    gap: 6px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust-bar {
    font-size: 0.78rem;
    padding-inline: 12px;
  }
}



/* ===== HERO CAROUSEL ===== */

.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: calc(100vh - 70px);
  padding: 110px 5vw 90px;
  background: radial-gradient(circle at top left, #172949 0, #050812 60%, #03060c 100%);
  color: #f4f7ff;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

/* Overlay alternativo para transporte */
.hero-overlay--transport {
  background:
    linear-gradient(120deg, rgba(3, 8, 20, 0.55), rgba(5, 8, 18, 0.60)),
    radial-gradient(circle at 85% 20%, rgba(255, 212, 71, 0.08), transparent 55%);
}

/* ===== TARJETAS DE DIMENSIONES ===== */

.transport-dims {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.dim-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 212, 71, 0.30);
  background: rgba(255, 212, 71, 0.07);
  backdrop-filter: blur(10px);
  min-width: 90px;
}

.dim-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gh-yellow);
  letter-spacing: -0.02em;
  line-height: 1;
}

.dim-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(232, 237, 255, 0.65);
}

/* ===== CONTROLES ===== */

.carousel-controls {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--gh-transition), width var(--gh-transition);
}

.carousel-dot.active {
  background: var(--gh-yellow);
  width: 24px;
}

.carousel-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 20, 40, 0.55);
  color: #f4f7ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background var(--gh-transition), border-color var(--gh-transition), transform var(--gh-transition);
}

.carousel-arrow:hover {
  background: var(--gh-yellow);
  border-color: var(--gh-yellow);
  color: #111;
  transform: scale(1.08);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .hero-slide {
    padding: 100px 5vw 70px;
  }
  .carousel-controls {
    bottom: 90px;
  }
}

@media (max-width: 600px) {
  .hero-slide {
    padding: 96px 18px 60px;
  }
  .transport-dims {
    gap: 8px;
  }
  .dim-card {
    padding: 10px 14px;
    min-width: 78px;
  }
  .dim-value {
    font-size: 1.1rem;
  }
  .carousel-controls {
    bottom: 80px;
  }
}

.hero-title-transport {
  max-width: 950px;
  line-height: 0.95;
  text-wrap: balance;
}

#slide-2 .hero-left {
  max-width: 900px;
}

#slide-2 .hero-title span {
  display: inline-block;
}