/* ============================================================
   vs-hero.css  v2
   Hero section para páginas comparativas "AvaiBook vs [competidor]"
   Tipografía: Lato (corporativa)
   Colores: #11b3a2 teal corporativo · #CE2676 CTA buganvilla
   Folder: css/sections/
   ============================================================ */

/* ── Badge VS ────────────────────────────────────────────── */
.vs-hero__vs-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
}

.vs-hero__brand {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #11b3a2;
  font-size: 1.15rem;
}

.vs-hero__vs-text {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #9ca3af;
  font-size: 1rem;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  background: #f3f4f6;
  letter-spacing: 0.04em;
}

.vs-hero__competitor {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #6b7280;
  font-size: 1rem;
}

/* ── Chips diferenciadores ───────────────────────────────── */
.vs-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.vs-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f0fdf9;
  border: 1px solid rgba(17, 179, 162, 0.3);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0b4943;
  transition: background 0.15s ease;
}

.vs-hero__chip:hover {
  background: rgba(17, 179, 162, 0.12);
}

.vs-hero__chip i {
  color: #11b3a2;
  font-size: 0.72rem;
}

/* ── H1 highlight ────────────────────────────────────────── */
.vs-hero__h1-highlight {
  color: #11b3a2;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 640px) {
  .vs-hero__vs-label {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .vs-hero__chips {
    gap: 0.35rem;
  }

  .vs-hero__chip {
    font-size: 0.73rem;
    padding: 0.25rem 0.6rem;
  }
}
