/* ==========================================================================
   Greñitas | Impulse Trading — hoja de estilos (HTML/CSS/JS puro)
   ========================================================================== */

:root {
  --navy: #06070a;
  --navy-light: #0d0f14;
  --navy-card: #121620;

  --blue: #1565d8;
  --blue-light: #2f7cf0;

  --orange: #f15a24;
  --orange-light: #f7941d;

  --gold: #fbb03b;
  --gold-light: #ffd166;

  --cream: #f0e2c0;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --max-7xl: 80rem;
  --max-4xl: 56rem;
  --max-2xl: 42rem;
  --max-3xl: 48rem;
  --max-xl: 36rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  background: var(--navy);
  color: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.container { margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

.max-7xl { max-width: var(--max-7xl); }
.max-4xl { max-width: var(--max-4xl); }

/* ==========================================================================
   Texto de marca: gradiente y brillo animado
   ========================================================================== */

.text-gradient-brand {
  background: linear-gradient(90deg, var(--blue-light) 0%, var(--orange) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes shimmer { to { background-position: 200% center; } }

.text-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 25%, var(--orange) 50%, var(--gold-light) 75%, var(--gold) 100%);
  background-size: 200% auto;
  background-position: 0% center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  animation: shimmer 3.5s linear infinite;
}

/* ==========================================================================
   Brillo detrás de tarjetas/botones (glow-box) + feedback táctil (press)
   ========================================================================== */

.glow-box { position: relative; isolation: isolate; }

.glow-box::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: inherit;
  background: var(--glow-color, transparent);
  filter: blur(32px);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.glow-box:focus-visible::before { opacity: 0.28; }
.glow-box-active::before { opacity: 0.2; }

@media (hover: hover) and (pointer: fine) {
  .glow-box:hover::before { opacity: 0.28; }
  .glow-box-active:hover::before { opacity: 0.34; }
}

.press { transition: transform 140ms var(--ease-out); }
.press:active { transform: scale(0.97); }

/* ==========================================================================
   Materiales tipo iOS: vidrio esmerilado con profundidad real
   ========================================================================== */

.glass-panel {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
    0 0 0 1px rgba(0, 0, 0, 0.2);
}

.glass-panel-soft {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top-color: rgba(255, 255, 255, 0.16);
}

.glass-chip {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-transparency: reduce) {
  .glass-panel,
  .glass-panel-soft,
  .glass-chip {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: var(--navy-card);
  }
}

/* ==========================================================================
   Fondos: cuadrícula de puntos + resplandores difuminados (blobs)
   ========================================================================== */

.bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

.blob { position: absolute; pointer-events: none; border-radius: 9999px; }

@keyframes drift-a {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-46%, 4%) scale(1.08); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6%, 6%) scale(1.12); }
}
@keyframes drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, -5%) scale(1.1); }
}
.animate-drift-a { animation: drift-a 14s ease-in-out infinite; }
.animate-drift-b { animation: drift-b 16s ease-in-out infinite; }
.animate-drift-c { animation: drift-c 18s ease-in-out infinite; }

/* ==========================================================================
   Animación de aparición al hacer scroll (reveal)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Mascota flotante (Goku)
   ========================================================================== */

@keyframes mascot-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
@keyframes mascot-shadow {
  0%, 100% { transform: scaleX(1); opacity: 0.32; }
  50% { transform: scaleX(0.65); opacity: 0.16; }
}
@keyframes mascot-jump {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-42px) rotate(-12deg) scale(1.05); }
  50% { transform: translateY(-52px) rotate(8deg) scale(1.05); }
  75% { transform: translateY(-20px) rotate(-4deg) scale(1); }
  100% { transform: translateY(0) rotate(0deg) scale(1); }
}
@keyframes mascot-jump-shadow {
  0%, 100% { transform: scaleX(1); opacity: 0.32; }
  50% { transform: scaleX(0.45); opacity: 0.12; }
}
.animate-mascot-bob { animation: mascot-bob 2.6s ease-in-out infinite; }
.animate-mascot-shadow { animation: mascot-shadow 2.6s ease-in-out infinite; }
.animate-mascot-jump { animation: mascot-jump 700ms var(--ease-out); }
.animate-mascot-jump-shadow { animation: mascot-jump-shadow 700ms var(--ease-out); }

@keyframes thought-bubble-in {
  0% { opacity: 0; transform: translateY(8px) scale(0.85); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.mascot-wrap {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) { .mascot-wrap { bottom: 1.5rem; right: 1.5rem; } }

.mascot {
  display: flex;
  flex-direction: column;
  align-items: center;
  outline: none;
}
.mascot-img { height: 4rem; width: auto; filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.5)); }
@media (min-width: 640px) { .mascot-img { height: 5rem; } }
.mascot-shadow { margin-top: -0.25rem; height: 0.5rem; width: 2.25rem; border-radius: 9999px; background: #000; filter: blur(3px); }
@media (min-width: 640px) { .mascot-shadow { width: 2.75rem; } }

.thought-bubble {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 0.75rem;
  width: 12rem;
  animation: thought-bubble-in 0.45s var(--ease-out) both;
}
@media (min-width: 640px) { .thought-bubble { width: 14rem; } }
.thought-bubble-box {
  position: relative;
  border-radius: 1.5rem;
  background: var(--cream);
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5);
}
.thought-bubble-highlight { color: var(--orange); }
.thought-bubble-close {
  position: absolute;
  top: -0.375rem;
  right: -0.375rem;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--navy);
  color: var(--cream);
  font-size: 0.625rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.thought-bubble-dot { position: absolute; border-radius: 9999px; background: var(--cream); }
.thought-bubble-dot-lg { bottom: -0.375rem; right: 2.25rem; height: 0.75rem; width: 0.75rem; }
@media (min-width: 640px) { .thought-bubble-dot-lg { right: 2.75rem; } }
.thought-bubble-dot-sm { bottom: -0.875rem; right: 1.75rem; height: 0.5rem; width: 0.5rem; }
@media (min-width: 640px) { .thought-bubble-dot-sm { right: 2.25rem; } }

@media (prefers-reduced-motion: reduce) {
  .animate-drift-a, .animate-drift-b, .animate-drift-c,
  .animate-mascot-bob, .animate-mascot-shadow, .animate-mascot-jump, .animate-mascot-jump-shadow,
  .text-shimmer { animation: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 7, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar-inner {
  margin: 0 auto;
  max-width: var(--max-7xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
}
@media (min-width: 640px) { .navbar-inner { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .navbar-inner { grid-template-columns: 1fr auto 1fr; padding-left: 2rem; padding-right: 2rem; } }

.navbar-links { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .navbar-links { display: flex; } }
.navbar-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255, 255, 255, 0.7); transition: color 200ms; }
.navbar-links a:hover { color: var(--gold); }

.navbar-logo { display: flex; align-items: center; gap: 0.5rem; justify-self: start; }
@media (min-width: 1024px) { .navbar-logo { justify-self: center; } }
.navbar-logo img {
  height: 2.75rem;
  width: auto;
  filter: drop-shadow(0 0 16px rgba(34, 197, 94, 0.4));
  transition: transform 300ms;
}
@media (min-width: 640px) { .navbar-logo img { height: 3rem; } }
.navbar-logo:hover img { transform: scale(1.05); }

.navbar-right { display: flex; align-items: center; justify-content: flex-end; gap: 0.5rem; }
@media (min-width: 1024px) { .navbar-right { gap: 1.5rem; } }

.btn-ghost {
  display: none;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(240, 226, 192, 0.9);
  transition: color 200ms, border-color 200ms;
}
@media (min-width: 1280px) { .btn-ghost { display: inline-block; } }
.btn-ghost:hover { border-color: var(--blue-light); color: var(--blue-light); }

.btn-gradient-gold {
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 10px 20px -8px rgba(241, 90, 36, 0.4);
  transition: transform 200ms var(--ease-out);
}
.btn-gradient-gold:hover { transform: scale(1.05); }

/* ==========================================================================
   Secciones genéricas
   ========================================================================== */

.section { position: relative; overflow: hidden; padding: 5rem 0; }
.section-navy { background: var(--navy); }
.section-navy-light { background: var(--navy-light); }

.section-inner { position: relative; margin: 0 auto; max-width: var(--max-4xl); padding: 0 1rem; }
@media (min-width: 640px) { .section-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .section-inner { padding: 0 2rem; } }

.section-heading { margin-bottom: 3rem; text-align: center; }
.section-heading h2 { font-size: 1.875rem; font-weight: 900; color: var(--cream); }
@media (min-width: 640px) { .section-heading h2 { font-size: 2.25rem; } }
.section-heading p { margin-top: 0.75rem; color: rgba(255, 255, 255, 0.6); }

.label-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
}
.label-eyebrow.center { text-align: center; margin-bottom: 1rem; }

/* ==========================================================================
   Listas divididas (sesiones, brokers, apps)
   ========================================================================== */

.list-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 200ms;
}
.list-row:first-child { border-top: none; }
@media (min-width: 640px) { .list-row { padding-left: 2rem; padding-right: 2rem; } }
.list-row:hover { background: rgba(255, 255, 255, 0.03); }

/* Sesiones */
.session-row-left { display: flex; align-items: center; gap: 1rem; }
.session-icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: rgba(255, 255, 255, 0.35); stroke-width: 1.75; }
.session-row.is-active .session-icon { color: var(--gold); }
.session-row.is-active { background: rgba(251, 176, 59, 0.04); }
.session-name { font-size: 1rem; font-weight: 700; color: var(--cream); }
@media (min-width: 640px) { .session-name { font-size: 1.125rem; } }
.session-city { font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); }
.session-row-right { display: flex; align-items: center; gap: 0.5rem; }
.session-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: rgba(255, 255, 255, 0.2); }
.session-row.is-active .session-dot { background: var(--gold); box-shadow: 0 0 10px 2px var(--gold); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.session-status { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.3); }
.session-row.is-active .session-status { color: var(--gold); }
.session-utc { margin-top: 0.5rem; font-size: 0.875rem; font-family: ui-monospace, Menlo, monospace; color: rgba(255, 255, 255, 0.4); text-align: center; }

/* Brokers */
.broker-row { flex-direction: column; align-items: flex-start; gap: 1rem; padding-top: 1.5rem; padding-bottom: 1.5rem; }
@media (min-width: 640px) { .broker-row { flex-direction: row; align-items: center; } }
.broker-logo { flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 0.5rem; background: #fff; padding: 0.375rem; display: flex; align-items: center; justify-content: center; }
.broker-logo img { width: 100%; height: 100%; object-fit: contain; }
.broker-body { min-width: 0; flex: 1; }
.broker-title { display: flex; align-items: center; gap: 0.5rem; font-size: 1.125rem; font-weight: 700; color: var(--cream); }
.broker-title svg { width: 1rem; height: 1rem; color: rgba(251, 176, 59, 0.7); }
.broker-desc { margin-top: 0.125rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }
.link-cta { flex-shrink: 0; width: 100%; text-align: center; font-size: 0.875rem; font-weight: 700; color: var(--gold); text-decoration: underline; text-decoration-color: rgba(251, 176, 59, 0.4); text-underline-offset: 4px; transition: color 200ms; }
@media (min-width: 640px) { .link-cta { width: auto; } }
.link-cta:hover { color: var(--gold-light); }

.funded-card {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(241, 90, 36, 0.25);
  background: var(--navy-light);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
@media (min-width: 640px) { .funded-card { padding: 2.5rem 2.5rem; } }
.funded-logo { width: 100%; max-width: 220px; border-radius: 0.75rem; background: #fff; padding: 1rem; }
.funded-logo img { width: 100%; height: auto; object-fit: contain; }
.funded-title { font-size: 1.25rem; font-weight: 900; color: var(--cream); }
@media (min-width: 640px) { .funded-title { font-size: 1.5rem; } }
.funded-desc { max-width: 32rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }
.funded-code { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px; padding: 0.5rem 1rem; font-size: 0.875rem; }
.funded-code-label { color: rgba(255, 255, 255, 0.5); }
.funded-code-value { font-weight: 900; letter-spacing: 0.05em; color: var(--gold); }
.funded-btn { padding: 0.75rem 2rem; font-size: 0.875rem; }

/* Apps */
.app-row { flex-direction: column; align-items: stretch; gap: 1.25rem; padding-top: 1.5rem; padding-bottom: 1.5rem; }
.app-top { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; width: 100%; }
@media (min-width: 640px) { .app-top { flex-direction: row; align-items: center; } }
.app-icon { width: 1.5rem; height: 1.5rem; flex-shrink: 0; color: var(--gold); stroke-width: 1.75; }
.app-body { min-width: 0; flex: 1; }
.app-title { font-size: 1.125rem; font-weight: 700; color: var(--cream); }
.app-desc { margin-top: 0.125rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }
.app-right { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1rem; }
@media (min-width: 640px) { .app-right { width: auto; justify-content: flex-end; } }
.app-price { font-size: 1.125rem; font-weight: 900; }
.app-cta { display: inline-flex; align-items: center; gap: 0.375rem; flex-shrink: 0; border-radius: 9999px; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 700; color: var(--gold); transition: color 200ms; }
.app-cta:hover { color: var(--gold-light); }
.app-cta svg { width: 0.875rem; height: 0.875rem; }

.app-benefits { display: grid; gap: 0.5rem 1.5rem; padding-left: 2.5rem; }
@media (min-width: 640px) { .app-benefits { grid-template-columns: 1fr 1fr; } }
.app-benefit { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); }
.app-benefit svg { margin-top: 0.125rem; width: 0.875rem; height: 0.875rem; flex-shrink: 0; color: rgba(251, 176, 59, 0.7); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { position: relative; overflow: hidden; background: var(--navy); }
.hero-inner {
  position: relative;
  margin: 0 auto;
  max-width: var(--max-7xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 1rem;
  text-align: center;
}
@media (min-width: 640px) { .hero-inner { padding: 6rem 1.5rem; } }
@media (min-width: 1024px) { .hero-inner { padding-left: 2rem; padding-right: 2rem; } }

.badge {
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.hero-logo { height: 7rem; width: auto; filter: drop-shadow(0 0 40px rgba(251, 176, 59, 0.15)); }
@media (min-width: 640px) { .hero-logo { height: 10rem; } }

.hero-text { margin-top: 2rem; max-width: var(--max-2xl); font-size: 1.125rem; text-transform: uppercase; color: rgba(240, 226, 192, 0.7); }

.hero-contact { margin-top: 3rem; width: 100%; max-width: var(--max-2xl); text-align: left; }
.hero-contact .label-eyebrow { margin-bottom: 1rem; text-align: center; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  transition: transform 200ms var(--ease-out);
}
.contact-card:hover { transform: translateY(-4px); }
.contact-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 9999px; color: #fff; transition: transform 200ms var(--ease-out); }
.contact-card:hover .contact-icon { transform: scale(1.1); }
.contact-icon svg { width: 1.5rem; height: 1.5rem; }
.contact-title { display: block; font-size: 1rem; font-weight: 700; color: var(--cream); }
.contact-sub { display: block; font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); }

.pill-group { margin-top: 2.25rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.pill {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 9999px;
  padding: 0.625rem 1rem 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(240, 226, 192, 0.9);
  transition: transform 200ms var(--ease-out);
}
.pill:hover { transform: translateY(-2px); }
.pill svg { width: 1rem; height: 1rem; transition: transform 200ms var(--ease-out); }
.pill:hover svg { transform: scale(1.1); }
.badge-free { border-radius: 9999px; background: rgba(251, 176, 59, 0.15); padding: 0.125rem 0.5rem; font-size: 0.625rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold); }

/* ==========================================================================
   Carrusel de ofertas VIP + tarjeta de oferta
   ========================================================================== */

.offers-carousel { position: relative; margin: 0 auto 2rem; max-width: var(--max-4xl); }
.offers-viewport { overflow: hidden; }
.offers-track { display: flex; transition: transform 400ms var(--ease-out); }
.offer-slide { width: 100%; flex-shrink: 0; padding: 0.25rem 0.25rem; }

.offer-card { position: relative; overflow: hidden; padding: 1.5rem; }
@media (min-width: 640px) { .offer-card { padding: 2.25rem; } }

.offer-top-reflection {
  pointer-events: none;
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  opacity: 0.6;
}

.offer-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .offer-grid { grid-template-columns: 1.3fr 1fr; align-items: start; } }

.offer-badge { display: inline-flex; align-items: center; gap: 0.375rem; border-radius: 9999px; padding: 0.375rem 0.75rem; font-size: 0.625rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; }
.offer-title { margin-top: 1rem; font-size: 1.125rem; font-weight: 900; color: var(--cream); }
@media (min-width: 640px) { .offer-title { font-size: 1.25rem; } }
.offer-desc { margin-top: 0.5rem; font-size: 0.75rem; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }
.offer-benefits-label { margin-top: 1.5rem; font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; }

.offer-benefits { margin-top: 0.75rem; display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .offer-benefits { grid-template-columns: 1fr 1fr; } }
.offer-benefit { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.75rem; color: rgba(240, 226, 192, 0.9); }
.offer-benefit-icon { display: flex; height: 1.75rem; width: 1.75rem; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 9999px; }
.offer-benefit-icon svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; stroke-width: 2; }
.offer-benefit-text { padding-top: 0.125rem; }
.offer-top-badge { margin-left: 0.25rem; display: inline-flex; align-items: center; gap: 0.125rem; border-radius: 9999px; padding: 0.125rem 0.25rem; font-size: 0.5rem; font-weight: 900; text-transform: uppercase; vertical-align: middle; }
.offer-top-badge svg { width: 0.5rem; height: 0.5rem; margin: 0; }

.offer-access-col { padding: 1.25rem; }
.offer-access-label { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.4); }

.offer-access-list { }
.offer-access-option {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  transition: opacity 200ms;
}
.offer-access-option:first-child { border-top: none; }
.offer-access-option:hover { opacity: 0.75; }
.offer-access-icon { display: flex; height: 2rem; width: 2rem; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 9999px; }
.offer-access-icon svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }
.offer-access-title { display: block; font-size: 0.75rem; font-weight: 700; color: var(--cream); }
.offer-access-sub { display: block; font-size: 0.625rem; color: rgba(255, 255, 255, 0.5); }
.offer-access-copy-state { margin-left: auto; display: flex; flex-shrink: 0; align-items: center; gap: 0.25rem; font-size: 0.625rem; font-weight: 700; color: rgba(255, 255, 255, 0.4); }
.offer-access-copy-state svg { width: 0.875rem; height: 0.875rem; }

.offer-contact-note { margin-top: 0.75rem; font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); }
.offer-contacts { margin-top: 0.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.offer-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border-radius: 9999px;
  padding: 0.625rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cream);
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.5);
  transition: transform 200ms var(--ease-out);
}
.offer-contact-btn:hover { transform: scale(1.05); }
.offer-contact-btn svg { width: 0.875rem; height: 0.875rem; }

.carousel-arrow {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  color: var(--cream);
  transition: color 200ms;
}
.carousel-arrow:hover { color: var(--gold); }
.carousel-arrow-prev { left: 0; transform: translate(-0.75rem, -50%); }
.carousel-arrow-next { right: 0; transform: translate(0.75rem, -50%); }
.carousel-arrow svg { width: 1.25rem; height: 1.25rem; }

.carousel-dots { margin-top: 1rem; display: flex; justify-content: center; gap: 0.5rem; }
.carousel-dot { height: 0.5rem; width: 0.5rem; border-radius: 9999px; background: rgba(255, 255, 255, 0.2); transition: width 200ms var(--ease-out), background-color 200ms var(--ease-out); }
.carousel-dot:hover { background: rgba(255, 255, 255, 0.4); }
.carousel-dot.is-active { width: 1.5rem; background: var(--gold); }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { border-top: 1px solid rgba(255, 255, 255, 0.1); background: var(--navy); padding: 4rem 0; }
.footer-inner { margin: 0 auto; max-width: var(--max-7xl); padding: 0 1rem; }
@media (min-width: 640px) { .footer-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 0 2rem; } }

.support-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--navy-card);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
}
.support-panel h2 { font-size: 1.5rem; font-weight: 900; color: var(--cream); }
@media (min-width: 640px) { .support-panel h2 { font-size: 1.875rem; } }
.support-panel p { max-width: var(--max-xl); color: rgba(255, 255, 255, 0.6); }

.btn-gradient-blue {
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  box-shadow: 0 15px 30px -10px rgba(21, 101, 216, 0.3);
  transition: transform 200ms var(--ease-out);
}
.btn-gradient-blue:hover { transform: scale(1.05); }

.footer-bottom { margin-top: 3rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-logos { display: flex; align-items: center; gap: 0.75rem; }
.footer-logos img { height: 2rem; width: auto; }
.footer-divider { height: 1.5rem; width: 1px; background: rgba(255, 255, 255, 0.15); }
.footer-links { display: flex; gap: 1.5rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: rgba(255, 255, 255, 0.3); }
