/* index.css — el reset y las variables viven en base.css (se carga antes) */
.hero {
  background: var(--band-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.025) 0%, transparent 70%);
  bottom: 120px; /* separado del borde inferior para no "brillar" sobre el seam */
  left: -140px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -2.5px;
  line-height: 1.02;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-title span {
  color: var(--blue);
}
.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--blue-btn);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--blue-btn-hover);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid var(--outline-border);
  color: var(--text);
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone {
  background: #1e293b;
  border-radius: 36px;
  width: 280px;
  padding: 20px 16px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-name {
  font-size: 12px;
  font-weight: 700;
  color: #f0f6ff;
}
.phone-sub {
  font-size: 10px;
  color: #94a3b8;
}
.phone-msg {
  background: #334155;
  border-radius: 12px 12px 12px 2px;
  padding: 10px 14px;
  font-size: 11px;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 10px;
}
.phone-msg.bot {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(56, 189, 248, 0.1));
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 12px 12px 2px 12px;
}
.phone-time {
  font-size: 10px;
  color: #94a3b8;
  text-align: right;
  margin-top: 4px;
}
.hero-badge {
  position: absolute;
  background: var(--surface);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.badge-1 {
  top: 30px;
  right: -20px;
  z-index: 3;
}
.badge-2 {
  bottom: 60px;
  left: -30px;
  z-index: 3;
}
.badge-3 {
  top: 160px;
  left: -40px;
  z-index: 3;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -1px;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
} /* ─── SECTION BASE ───────────────────────────────────────── */
.section {
  padding: 96px 40px;
  /* tono B por defecto: ninguna sección queda en blanco puro */
  background: var(--section-bg-alt);
}
.section.bg-light {
  background: var(--section-bg);
}
.section.bg-dark {
  background: var(--band-bg);
}
.section.bg-navy2 {
  background: var(--navy2);
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-kicker {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--kicker);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-title span {
  color: var(--blue);
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
  line-height: 1.7;
}
.text-center {
  text-align: center;
}
.text-light {
  color: var(--text);
}
.text-muted-light {
  color: var(--text-muted);
}
.section.bg-dark .section-desc {
  color: var(--text-muted);
} /* ─── CANALES ────────────────────────────────────────────── */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

/* ─── Carrusel de canales: JS clona las cards y agrega --on; sin JS o con
   prefers-reduced-motion queda la grilla normal. margin-right en vez de gap
   para que translateX(-50%) cierre el loop exacto. ── */
.channels-carousel--on {
  overflow: hidden;
  margin-top: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.channels-carousel--on .channels-grid {
  display: flex;
  gap: 0;
  width: max-content;
  margin-top: 0;
  animation: channels-scroll 45s linear infinite;
}
.channels-carousel--on .channel-card {
  width: 260px;
  flex-shrink: 0;
  margin-right: 16px;
}
.channels-carousel--on:hover .channels-grid,
.channels-carousel--on:focus-within .channels-grid {
  animation-play-state: paused;
}
@keyframes channels-scroll {
  to {
    transform: translateX(-50%);
  }
}
.channel-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--card-border);
  transition: all 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.channel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.channel-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12);
}
.channel-card:hover::before {
  opacity: 1;
}
.channel-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--section-bg);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.channel-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.channel-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}
/* ─── HERRAMIENTAS ───────────────────────────────────────── */
.tools-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.tab-btn {
  padding: 10px 20px;
  border-radius: 24px;
  border: none;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--surface-2);
  color: var(--text-muted);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.3px;
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--blue-btn);
  color: #fff;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

.tool-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.25s;
}
.tool-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  background: rgba(14, 165, 233, 0.04);
  transform: translateY(-2px);
}
.tool-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.tool-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.15);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.tool-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.tool-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.tool-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tool-features li {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tool-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
} /* ─── META PARTNER ───────────────────────────────────────── */
.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .meta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.meta-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.meta-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.meta-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.meta-feature-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.meta-feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.meta-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(11, 18, 40, 0.08);
  text-align: center;
  border: 1px solid var(--card-border);
  position: relative;
}
.meta-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
}
.meta-badge {
  background: var(--surface);
  border-radius: 24px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.meta-logo-box {
  background: var(--section-bg);
  border-radius: 16px;
  padding: 28px 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.meta-logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
} /* ─── INTEGRACIONES ──────────────────────────────────────── */
.integrations-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-pill {
  padding: 7px 18px;
  border-radius: 24px;
  border: 1.5px solid var(--card-border);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  background: var(--surface);
  transition: all 0.2s;
  color: var(--text-muted);
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--blue-btn);
  color: #fff;
  border-color: var(--blue-btn);
}
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.integration-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--card-border);
  transition: all 0.25s;
}
.integration-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
}
.integration-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.integration-emoji {
  font-size: 28px;
}
.integration-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.integration-cat {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--chip-bg);
  border-radius: 6px;
  padding: 2px 8px;
}
.integration-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}
.integration-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #15803d;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
}
.integrations-custom {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(56, 189, 248, 0.05));
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 20px;
  padding: 32px 40px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.integrations-custom-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.integrations-custom-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.btn-secondary {
  background: var(--blue-btn);
  color: #fff;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: var(--blue-btn-hover);
} /* ─── DEMO ───────────────────────────────────────────────── */
.demo-video {
  background: var(--navy2);
  border-radius: 24px;
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  border: 1px solid rgba(14, 165, 233, 0.15);
  position: relative;
  overflow: hidden;
}
.demo-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.08), transparent 60%);
}
.demo-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 16px rgba(14, 165, 233, 0.15);
}
.demo-play:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 20px rgba(14, 165, 233, 0.1);
}
.play-icon {
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 26px solid #fff;
  margin-left: 4px;
}
.demo-cta-box {
  text-align: center;
}
.demo-cta-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.demo-cta-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.demo-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.demo-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.demo-stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -2px;
  line-height: 1;
}
.demo-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
} /* ─── SOCIAL PROOF ───────────────────────────────────────── */
.proof-badge {
  background: var(--surface);
  border: 1.5px solid #16a34a;
  color: #16a34a;
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.proof-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -2px;
  margin-bottom: 12px;
}
.proof-title span {
  color: var(--blue);
}
.proof-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 56px;
} /* ─── INDUSTRIAS ─────────────────────────────────────────── */
.industrias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .industrias-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .industrias-grid {
    grid-template-columns: 1fr;
  }
}

.industria-card {
  text-align: left;
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--card-border);
  transition: all 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.industria-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.1);
  transform: translateY(-3px);
}
.industria-card.dark-card {
  background: var(--featured-bg);
  border-color: var(--blue);
}
.industria-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.industria-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.industria-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.industria-card.dark-card .industria-name {
  color: var(--text);
}
.industria-count {
  font-size: 11px;
  color: var(--text-muted);
}
.industria-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.industria-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #15803d;
} /* ─── FAQ ────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--blue);
}
.faq-q {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  /* reset de button para conservar el aspecto original del div */
  width: 100%;
  background: none;
  border: 0;
  font-family: inherit;
  text-align: left;
}
.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--section-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-item.open .faq-toggle {
  background: var(--blue-btn);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 640px;
  padding: 0 24px 22px;
} /* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: var(--band-bg);
  padding: 96px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.1), transparent 60%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -2px;
  margin-bottom: 16px;
  text-wrap: balance;
}
.cta-title span {
  color: var(--blue);
}
.cta-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
/* ─── UTILS ──────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 96px 20px 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-inner > div {
    min-width: 0;
  }

  .hero-title {
    letter-spacing: -1.5px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px 32px;
  }

  /* badges como fila estática bajo el teléfono (absolutos tapaban el chat) */
  .hero-visual {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-phone {
    flex-basis: 100%;
    margin: 0 auto 8px;
  }

  .hero-badge {
    position: static;
    box-shadow: none;
  }

  .meta-badges {
    right: 0;
  }

  .section {
    padding: 72px 20px;
  }

  .cta-section {
    padding: 72px 20px;
  }
}

@media (max-width: 600px) {
  .integrations-grid {
    grid-template-columns: 1fr;
  }

  .tab-btn {
    padding: 13px 20px;
  }

  .filter-pill {
    padding: 11px 18px;
  }
}

/* ─── ICONOS SVG (tabs y tools, reemplazo de emojis) ─────── */
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.tab-btn svg {
  flex-shrink: 0;
}

/* ─── META PARTNER responsive (lockup fluido, badges estáticos en móvil) ── */
.meta-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.meta-lockup {
  font-size: clamp(24px, 7vw, 36px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -2px;
}
.meta-lockup-sub {
  font-size: clamp(12px, 3.5vw, 16px);
  font-weight: 600;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .meta-visual {
    flex-direction: column;
    gap: 16px;
  }

  .meta-badges {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .meta-card {
    padding: 28px 20px;
    width: 100%;
  }

  .meta-logo-box {
    padding: 24px 20px;
  }
}


/* ═══════════════════════════════════════════════════════════
   TRANSICIONES, BORDES Y ANIMACIONES (paleta azul-gris)
   ═══════════════════════════════════════════════════════════ */

/* ─── Seams: bandas de degradé que suavizan los cortes navy↔claro ──
   Van entre dos secciones en el flujo normal; el degradé va del color
   de arriba al de abajo, sin saltos duros. */
.seam {
  height: 120px;
  pointer-events: none;
}
/* Degradé en 3 paradas (mezcla en el punto medio) para una transición aún más
   gradual que un lineal simple: el ojo no percibe un corte. */
.seam-dark-light {
  background: linear-gradient(to bottom, var(--band-bg) 0%, color-mix(in srgb, var(--band-bg), var(--section-bg)) 50%, var(--section-bg) 100%);
}
.seam-light-dark {
  background: linear-gradient(to bottom, var(--section-bg) 0%, color-mix(in srgb, var(--section-bg), var(--band-bg)) 50%, var(--band-bg) 100%);
}
@media (max-width: 768px) {
  .seam {
    height: 72px;
  }
}

/* La sección anima su fondo al cambiar de tema (las tarjetas ya usan transition:all) */
.section,
.seam,
.cta-section {
  transition: background-color 0.3s ease;
}
.integration-card:hover .integration-emoji,
.industria-card:hover .industria-icon {
  transform: scale(1.12) translateY(-2px);
}

/* ─── Animaciones ambientales (respetan prefers-reduced-motion) ─── */
@media (prefers-reduced-motion: no-preference) {
  /* Pulso "en vivo" de los puntos de estado (Activo / industrias) */
  .status-dot {
    animation: dot-pulse 2.4s ease-in-out infinite;
  }

  @keyframes dot-pulse {
    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
    }
    50% {
      box-shadow: 0 0 0 5px rgba(22, 163, 74, 0);
    }
  }

  /* Puntos de los badges flotantes del hero, con su propio color */
  .badge-dot {
    animation: badge-pulse 2.6s ease-in-out infinite;
  }

  @keyframes badge-pulse {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.55;
      transform: scale(0.82);
    }
  }

  /* Deriva lenta de los blobs de fondo del hero (ambiente sutil) */
  .hero::before {
    animation: blob-drift-a 22s ease-in-out infinite alternate;
  }

  .hero::after {
    animation: blob-drift-b 26s ease-in-out infinite alternate;
  }

  @keyframes blob-drift-a {
    from {
      transform: translate(0, 0);
    }
    to {
      transform: translate(-40px, 30px);
    }
  }

  @keyframes blob-drift-b {
    from {
      transform: translate(0, 0);
    }
    to {
      transform: translate(30px, -24px);
    }
  }
}


/* Nav con sombra al hacer scroll (la clase la agrega index.js) */
nav.scrolled {
  box-shadow: 0 6px 24px rgba(5, 10, 24, 0.35);
}

/* ─── Tarjetas: sombra en reposo (compartido con planes.css) ── */
.channel-card,
.integration-card,
.industria-card,
.faq-item {
  box-shadow: 0 1px 2px rgba(11, 18, 40, 0.04), 0 6px 16px rgba(11, 18, 40, 0.05);
}

/* ─── Micro-interacción: los íconos de tarjeta reaccionan al hover ── */
.channel-icon,
.integration-emoji,
.industria-icon {
  transition: transform 0.25s ease;
}
.channel-card:hover .channel-icon {
  transform: scale(1.08) rotate(-3deg);
}
