/* ===============================================
   TICKER — TEXTO ROTATIVO
   =============================================== */

.ticker {
  position: relative;
  width: 100%;
  background: transparent;
  padding: 6px 0;
  z-index: 50;
  margin-top: var(--navbar-h);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.ticker__track {
  position: relative;
  width: 100%;
  height: 24px;
  overflow: hidden;
}

.ticker__marquee {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: tickerTape 24s linear infinite;
}

.ticker__group {
  display: inline-flex;
  align-items: center;
  gap: 96px;
  flex-shrink: 0;
  min-width: auto;
  padding-right: 96px;
  white-space: nowrap;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.62rem, 0.94vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.75);
  line-height: 24px;
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.16);
}

.ticker__sep {
  display: inline-flex;
  align-items: center;
  color: rgba(201, 168, 76, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0;
}

@keyframes tickerTape {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 767px) {
  .ticker {
    padding: 5px 0;
    border-top-color: transparent;
  }

  .ticker__track {
    height: 22px;
  }

  .ticker__group {
    gap: 52px;
    padding-right: 52px;
  }

  .ticker__marquee {
    animation-duration: 18s;
  }

  .ticker__item {
    font-size: 0.56rem;
    letter-spacing: 0.14em;
    line-height: 22px;
  }
}


/* ===============================================
   HERO — LOGO CENTRADO (reemplaza al carousel)
   =============================================== */

.hero {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  isolation: isolate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.006) 0.7px, transparent 0.7px),
    radial-gradient(rgba(255, 255, 255, 0.004) 0.7px, transparent 0.7px);
  background-size: 3px 3px, 4px 4px;
  background-position: 0 0, 1px 1px;
  opacity: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -6%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 50% 43%, rgba(201, 168, 76, 0.032) 0%, rgba(201, 168, 76, 0.012) 14%, rgba(255, 255, 255, 0.002) 22%, transparent 38%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__particles span {
  position: absolute;
  width: 2.8px;
  height: 2.8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 9px rgba(201, 168, 76, 0.24);
  animation: particleFloat 7.5s ease-in-out infinite;
}

.hero__particles span:nth-child(1) { left: 18%; top: 62%; animation-delay: 0s; }
.hero__particles span:nth-child(2) { left: 72%; top: 34%; animation-delay: 1.2s; animation-duration: 6.8s; }
.hero__particles span:nth-child(3) { left: 63%; top: 69%; animation-delay: 2.4s; animation-duration: 8.2s; }
.hero__particles span:nth-child(4) { left: 35%; top: 28%; animation-delay: 3.6s; animation-duration: 7.1s; }

@keyframes particleFloat {
  0%, 100% { transform: translate3d(0px, 0px, 0) scale(1); opacity: 0.38; }
  20% { transform: translate3d(9px, -10px, 0) scale(1.14); opacity: 0.78; }
  45% { transform: translate3d(-8px, -18px, 0) scale(0.92); opacity: 1; }
  70% { transform: translate3d(6px, -12px, 0) scale(1.08); opacity: 0.82; }
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 0 24px;
  transform: translateY(-18px);
  pointer-events: auto;
  animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__logo {
  width: min(620px, 84vw);
  height: auto;
  max-height: 56vh;
  object-fit: contain;
  pointer-events: none;
  animation: heroLogoIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__divider {
  width: clamp(86px, 14vw, 180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.75), transparent);
  pointer-events: none;
  animation: drawLineGold 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes drawLineGold {
  from {
    width: 0;
  }
  to {
    width: clamp(86px, 14vw, 180px);
  }
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.86rem, 1.08vw, 1.08rem);
  letter-spacing: 0.18em;
  line-height: 1.42;
  max-width: min(840px, 86vw);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 0.18em;
  justify-items: center;
}

.hero__tagline span {
  display: block;
  text-wrap: balance;
}

.hero__btn {
  position: relative;
  z-index: 3;
  pointer-events: auto;
  display: inline-flex;
  margin-top: -18px;
  min-height: 50px;
  padding: 13px 34px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color 0.35s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero__btn:hover {
  background-color: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.85);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
}

@media (max-width: 767px) {
  .hero {
    min-height: 460px;
    height: calc(100dvh - var(--navbar-h) - 49px);
  }

  .hero__content {
    gap: 30px;
    transform: translateY(28px);
  }

  .hero__logo {
    width: min(510px, 86vw);
    max-height: 44vh;
    margin-top: 0;
  }

  .hero__tagline {
    font-size: clamp(0.58rem, 2.85vw, 0.72rem);
    letter-spacing: 0.055em;
    line-height: 1.5;
    max-width: 100vw;
  }

  .hero__tagline span {
    white-space: nowrap;
  }

  .hero__btn {
    width: auto;
    max-width: 78vw;
    margin-top: 30px;
    min-height: 47px;
    font-size: 0.84rem;
    letter-spacing: 0.18em;
    padding: 12px 22px;
  }
}

/* Hide carousel styles (no más necesarios) */
.carousel,
.carousel__track,
.carousel__slide,
.carousel__overlay,
.carousel__content,
.carousel__eyebrow,
.carousel__title,
.carousel__subtitle,
.carousel__arrow,
.carousel__dots {
  display: none !important;
}
