/* VistaCriativa AI — Landing page styles. Imports the core tokens. */
@import url("./colors_and_type.css");

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--vc-text);
  background: var(--vc-bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ============ Layout primitives ============ */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section { padding: 56px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 40px 0; } }
.section--navy { background: linear-gradient(135deg,#34233a 0%,#241829 50%,#34233a 100%); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--light { background: var(--vc-bg); }
.section--cream { background: #FAF6EE; }
.section--dots {
  background-image: radial-gradient(circle at 1px 1px, rgba(52,35,58,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}
.section--divided::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(176,136,40,0) 8%,
    rgba(176,136,40,0.45) 50%,
    rgba(176,136,40,0) 92%,
    transparent 100%);
}
.section__inner { position: relative; z-index: 2; }

.grain { position: relative; }
.grain::after {
  content: "";
  position: absolute; inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vc-gold);
  margin-bottom: 14px;
}
.eyebrow--center { text-align: center; }
/* AIA — the product wordmark above the hero eyebrow (reads as Assistente de IA / AI Assistant) */
.hero__brand {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  margin-bottom: 12px;
}
.hero__brand .gold-grad { display: inline-block; }

h1, h2, h3 { margin: 0; }
.h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw + 0.5rem, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--vc-navy);
}
.section--navy .h1, .section--navy .h2 { color: #fff; }
.h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 2.4vw + 0.5rem, 2.125rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--vc-navy);
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--vc-navy);
}
.gold-grad {
  background: linear-gradient(135deg,#b08828,#d4ad4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead {
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--vc-text-muted);
  max-width: 54ch;
}
.section--navy .lead { color: #9CA3AF; }
.muted { color: var(--vc-text-muted); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn--green {
  background: #27AE60;
  color: #fff;
  box-shadow: 0 2px 8px rgba(39,174,96,0.25);
}
.btn--green:hover { background: #229954; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(39,174,96,0.35); }
.btn--gold {
  background: #b08828;
  color: var(--vc-navy);
  box-shadow: 0 1px 3px rgba(176,136,40,0.2);
}
.btn--gold:hover { background: #c39a3a; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(176,136,40,0.30); }
.btn--outline {
  background: transparent;
  color: var(--vc-text-muted);
  border: 1px solid rgba(107,114,128,0.25);
  font-weight: 500;
}
.btn--outline:hover { color: var(--vc-navy); border-color: var(--vc-gold); background: rgba(176,136,40,0.06); }
.section--navy .btn--outline { color: #d1d5db; border-color: rgba(255,255,255,0.20); }
.section--navy .btn--outline:hover { color: #fff; border-color: var(--vc-gold); background: rgba(176,136,40,0.10); }
.btn--small { padding: 8px 18px; font-size: 13px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ Reveal animations (scroll-triggered) ============ */
/* Default = fully visible (no-JS / reduced-motion safe). Hidden state only
   applies when motion is welcome and JS has tagged the element. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 800ms cubic-bezier(0.16,1,0.3,1), transform 800ms cubic-bezier(0.16,1,0.3,1); will-change: opacity, transform; }
  .reveal.is-visible { opacity: 1; transform: none; }
  /* Stagger mode: container only fades; its children do the rising. */
  .reveal--stagger { transform: none; }
  .reveal .stagger { opacity: 0; transform: translateY(22px); transition: opacity 720ms cubic-bezier(0.16,1,0.3,1), transform 720ms cubic-bezier(0.16,1,0.3,1); }
  .reveal.is-visible .stagger { opacity: 1; transform: none; }
}

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--vc-navy);
  border-bottom: 1px solid rgba(176,136,40,0.20);
  color: #fff;
  transition: box-shadow 300ms ease, background-color 300ms ease;
}
.nav--scrolled {
  background: rgba(36,24,41,0.92);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 6px 24px rgba(36,24,41,0.28);
}
.nav__inner { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 40px; }
.nav__right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: 0;
  color: rgba(255,255,255,0.4);
  transition: color 250ms;
}
.lang-toggle button.active { color: var(--vc-gold); }
.lang-toggle button:hover { color: #fff; }
.lang-toggle__sep { color: rgba(255,255,255,0.2); }

/* ============ Hero ============ */
.hero { padding: 56px 0 64px; overflow: hidden; }
@media (max-width: 768px) { .hero { padding: 40px 0 48px; } }
.hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; gap: 32px; } }
/* On desktop, let the hero fill roughly one screen (minus the 64px sticky nav) */
@media (min-width: 901px) {
  .hero { min-height: calc(100svh - 64px); display: flex; flex-direction: column; justify-content: center; }
}
.hero__bloom-1, .hero__bloom-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}
.hero__bloom-1 { top: -100px; right: -100px; width: 520px; height: 520px; background: rgba(176,136,40,0.08); }
.hero__bloom-2 { bottom: -120px; left: -120px; width: 360px; height: 360px; background: rgba(61,122,181,0.10); }

/* ============ Phone mockup ============ */
.phone {
  width: 290px;
  height: 600px;
  background: #0b1424;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(176,136,40,0.15);
  margin: 0 auto;
  position: relative;
}
.phone__notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 22px;
  background: #0b1424;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone__screen {
  width: 100%;
  height: 100%;
  background: #efeae2;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.phone__home-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  border-radius: 2px;
  background: rgba(0,0,0,0.25);
  z-index: 4;
}
.phone__chat-bg {
  background-color: #efeae2;
  background-image:
    radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 24px 24px, 32px 32px;
  background-position: 0 0, 12px 16px;
}

/* iOS status bar */
.wa-statusbar {
  background: #008069;
  color: #fff;
  height: 26px;
  padding: 4px 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  position: relative;
  z-index: 2;
}
.wa-statusbar__time { letter-spacing: -0.02em; }
.wa-statusbar__right { display: inline-flex; align-items: center; gap: 6px; }

/* Chat header */
.wa-header {
  background: #008069;
  color: #fff;
  padding: 6px 10px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.wa-back { color: #fff; flex: none; opacity: 0.95; }
.wa-avatar {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  color: var(--vc-gold);
  font-size: 16px;
  flex: none;
}
.wa-header__text { flex: 1 1 auto; min-width: 0; }
.wa-name { font-weight: 600; line-height: 1.15; font-size: 13.5px; }
.wa-status { font-size: 10.5px; font-weight: 400; opacity: 0.85; line-height: 1.3; }
.wa-header__actions { display: inline-flex; gap: 14px; color: #fff; opacity: 0.9; flex: none; }

/* Day separator */
.wa-daybadge {
  align-self: center;
  background: rgba(225, 245, 254, 0.92);
  color: #54656f;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
  margin: 6px 0 8px;
}

.wa-messages {
  flex: 1;
  padding: 4px 10px 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wa-bubble {
  max-width: 80%;
  padding: 6px 9px 5px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.35;
  position: relative;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
  color: #111b21;
}
.wa-bubble--in  { background: #fff; align-self: flex-start; border-top-left-radius: 0; }
.wa-bubble--out { background: #d9fdd3; align-self: flex-end; border-top-right-radius: 0; }
.wa-meta { font-size: 9px; color: rgba(0,0,0,0.45); text-align: right; margin-top: 2px; }
.wa-meta__check { color: #53bdeb; margin-left: 2px; }

/* Voice-note + photo bubbles (personal demos show voice + image ingestion) */
.wa-bubble--media { max-width: 86%; }
.wa-voice { display: flex; align-items: center; gap: 7px; min-width: 158px; }
.wa-voice__play { flex: none; opacity: 0.85; }
.wa-voice__wave { flex: 1 1 auto; display: flex; align-items: center; min-width: 0; }
.wa-voice__dur { flex: none; font-size: 10px; opacity: 0.65; font-variant-numeric: tabular-nums; }
.wa-voice__tx { margin-top: 5px; font-size: 11px; line-height: 1.35; opacity: 0.62; font-style: italic; }
.wa-photo { width: 188px; max-width: 100%; aspect-ratio: 22/15; border-radius: 9px; overflow: hidden; background: rgba(0,0,0,0.06); }
.wa-photo svg { display: block; width: 100%; height: 100%; }
.wa-photo__cap { margin-top: 5px; font-size: 11px; opacity: 0.7; }
/* Drafted-email card inside an AI bubble (shows the actual draft, not "I drafted it") */
.wa-bubble--draft { max-width: 90%; }
.wa-draft__lead { margin-bottom: 6px; }
.wa-draft { border-left: 2.5px solid #d4ad4e; padding: 1px 0 1px 9px; margin: 2px 0; }
.wa-draft__label { font-size: 10px; opacity: 0.6; margin-bottom: 4px; letter-spacing: 0.02em; }
.wa-draft__subj { font-weight: 700; font-size: 12px; margin-bottom: 4px; }
.wa-draft__body { font-size: 11.5px; line-height: 1.5; opacity: 0.92; }
.wa-draft__foot { margin-top: 7px; font-size: 11px; opacity: 0.7; }

/* Composer */
.wa-composer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 18px;
  background: #efeae2;
}
.wa-composer__input {
  flex: 1 1 auto;
  background: #fff;
  border-radius: 999px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #54656f;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.08);
  min-width: 0;
}
.wa-composer__placeholder {
  flex: 1 1 auto;
  font-size: 12px;
  color: #8696a0;
  letter-spacing: 0.01em;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}
.wa-composer__input svg { flex: none; color: #54656f; }
.wa-composer__mic {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #008069;
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Animated bubble entry */
@keyframes wa-bubble-in {
  from { opacity: 0; transform: translateY(6px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-bubble--enter { animation: wa-bubble-in 260ms cubic-bezier(0.16,1,0.3,1) both; }

/* Typing indicator */
.wa-bubble--typing { padding: 8px 12px 8px; }
.wa-typing { display: inline-flex; gap: 4px; align-items: center; height: 12px; }
.wa-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: #8696a0; opacity: 0.4;
  animation: wa-typing-bounce 1.2s infinite ease-in-out;
}
.wa-typing span:nth-child(2) { animation-delay: 0.18s; }
.wa-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes wa-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-3px); opacity: 0.9; }
}

/* ── Dark-mode chat (Personal AI) ─────────────────────────────────────
   Same wa-bubble chat engine, dark theme. Signals Personal AI is a
   different product from the (light) business chats. Applied by app.js
   via .wa--dark on the .phone wrapper when a scenario/tab has dark:true. */
.wa--dark .phone__screen { background: #0b141a; }
.wa--dark .phone__chat-bg {
  background-color: #0b141a;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
}
.wa--dark .wa-statusbar { background: #1f2c34; }
.wa--dark .wa-header { background: #1f2c34; }
.wa--dark .wa-daybadge { background: rgba(31,44,52,0.92); color: #aebac1; box-shadow: none; }
.wa--dark .wa-bubble { color: #e9edef; box-shadow: 0 1px 0.5px rgba(0,0,0,0.3); }
.wa--dark .wa-bubble--in  { background: #202c33; }
.wa--dark .wa-bubble--out { background: #005c4b; }
.wa--dark .wa-meta { color: rgba(233,237,239,0.55); }
.wa--dark .wa-meta__check { color: #53bdeb; }
.wa--dark .wa-composer { background: #0b141a; }
.wa--dark .wa-composer__input { background: #202c33; color: #aebac1; box-shadow: none; }
.wa--dark .wa-composer__placeholder { color: #8696a0; }
.wa--dark .wa-composer__input svg { color: #aebac1; }
.wa--dark .wa-typing span { background: #aebac1; }

/* ── "What you get" — split into two labelled product groups ─────────── */
.journey-group { margin-top: 30px; }
.journey-group + .journey-group { margin-top: 44px; }
.journey-group__label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--vc-navy);
  margin: 0 0 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(52,35,58,0.12);
}
.journey-group .bento { margin-top: 18px; }
.journey-group__note {
  margin: 16px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--vc-text-muted);
  font-style: italic;
}

/* ── Product-family spotlights (two-col: WhatsApp phone + offer) ─────────
   Reuses .hero__grid (two-col, stacks <=900px), .phone and .card markup. */
/* Keep the phone clear of the 64px sticky nav when the section is scrolled to,
   and top-align both columns so the (shorter) phone column doesn't leave a
   large empty gap beside the taller offer column. */
.section:has(.spotlight) { scroll-margin-top: 90px; }
.spotlight { align-items: start; }
/* Phone column: top-align the phone + chips, no forced min-height. */
.spotlight__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  align-self: start;
}
.spotlight__offer { min-width: 0; }
.spotlight__offer .eyebrow { margin-bottom: 6px; }
/* Benefit list: stack a bold benefit over a lighter supporting line so the column
   scans as a checklist instead of a wall of wrapping inline text. */
.spotlight__bullets { margin-top: 22px; gap: 18px; }
.spotlight__bullet { align-items: flex-start; }
.spotlight__bullet-ico { display: flex; margin-top: 2px; }
.spotlight__bullet-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.spotlight__bullet-body strong { font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--vc-navy); }
.spotlight__bullet-text { font-size: 13px; line-height: 1.5; color: var(--vc-text-muted); }
/* On navy spotlights, lift the offer text for contrast */
.section--navy .spotlight__bullet-body strong { color: #fff; }
.section--navy .spotlight__bullet-text { color: rgba(255,255,255,0.62); }
.spotlight__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.spotlight__cards:has(> .card:only-child) { grid-template-columns: 1fr; max-width: 360px; }
@media (max-width: 560px) { .spotlight__cards { grid-template-columns: 1fr; } }
.spotlight__note {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--vc-text-muted);
  font-style: italic;
}
.section--navy .spotlight__note { color: rgba(255,255,255,0.72); }
/* Secondary product row (Booking + Custom) — two compact cards, centered */
.products--secondary { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; margin-left: auto; margin-right: auto; }
@media (max-width: 620px) { .products--secondary { grid-template-columns: 1fr; max-width: 520px; } }

/* Scenario chips below the phone */
.scenario-chips {
  width: 100%;
  max-width: 340px;
  text-align: center;
}
.scenario-chips__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(176,136,40,0.85);
  margin-bottom: 10px;
}
.scenario-chips__row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.scenario-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  font: inherit;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.16,1,0.3,1);
}
.scenario-chip:hover {
  color: #fff;
  border-color: rgba(176,136,40,0.45);
  background: rgba(176,136,40,0.06);
}
.scenario-chip.is-active {
  color: var(--vc-navy);
  background: linear-gradient(135deg,#b08828,#d4ad4e);
  border-color: rgba(176,136,40,0.8);
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(176,136,40,0.25);
}
.scenario-chip__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vc-navy);
  animation: wa-pulse 1.2s infinite ease-in-out;
}
/* Light-background variant (Front Desk spotlight sits on a light/dotted section) */
.scenario-chips--light .scenario-chip {
  border-color: rgba(36,24,41,0.16);
  background: rgba(36,24,41,0.03);
  color: var(--vc-text);
}
.scenario-chips--light .scenario-chip:hover {
  color: var(--vc-navy);
  border-color: rgba(176,136,40,0.55);
  background: rgba(176,136,40,0.08);
}
.scenario-chips--light .scenario-chip.is-active {
  color: var(--vc-navy);
  background: linear-gradient(135deg,#b08828,#d4ad4e);
  border-color: rgba(176,136,40,0.8);
}
@keyframes wa-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50%      { opacity: 1; transform: scale(1.1); }
}

/* ============ Pain list ============ */
.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
}
.problem-grid__left .pain-close { margin-top: 20px; }
.problem-grid__right { align-self: center; }
.pain-list { display: grid; gap: 14px; max-width: 720px; }
.pain {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 17px;
  line-height: 1.55;
}
.pain__icon {
  flex: none;
  width: 36px; height: 36px;
  background: rgba(176,136,40,0.10);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--vc-gold);
}
.pain-close {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  color: var(--vc-navy);
  margin-top: 40px;
  line-height: 1.3;
  max-width: 28ch;
  text-wrap: balance;
}

/* ============ Product grid ============ */
.products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
@media (max-width: 1100px) { .products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } }
@media (max-width: 620px) { .products { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } }
.products__note { text-align: center; margin: 22px auto 0; font-size: 13.5px; color: var(--vc-text-muted); }
.section__sub { max-width: 54ch; margin: 14px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--vc-text-muted); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 26px 26px;
  border: 1px solid var(--vc-border);
  box-shadow: 0 1px 2px rgba(36,24,41,0.04), 0 4px 12px rgba(36,24,41,0.06);
  transition: all 300ms cubic-bezier(0.16,1,0.3,1);
}
/* Every price card ends in a full-width WhatsApp CTA. A wrapping spacer (with
   margin-top:auto) pushes it to the bottom so CTAs align across cards of unequal
   height (e.g. Lite vs Concierge), while keeping a clean gap above the button. */
.card__cta-wrap { margin-top: auto; padding-top: 20px; }
.card__cta {
  width: 100%;
  justify-content: center;
  gap: 8px;
}
.card:hover {
  border-color: rgba(176,136,40,0.40);
  box-shadow: 0 6px 10px rgba(36,24,41,0.06), 0 20px 44px rgba(36,24,41,0.13);
  transform: translateY(-5px);
}
.card--popular { border-top: 3px solid var(--vc-gold); }
.card__badge {
  position: absolute;
  top: -14px; right: 24px;
  background: linear-gradient(135deg,#b08828,#d4ad4e);
  color: var(--vc-navy);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.card__title { margin-bottom: 8px; }
/* Price cards stay white even inside a navy spotlight, so keep their title dark —
   otherwise the global `.section--navy h3 { color:#fff }` rule makes it vanish
   white-on-white, leaving an empty gap at the top of the card. */
.section--navy .card__title { color: var(--vc-navy); }
.card__desc { font-size: 14.5px; line-height: 1.55; color: var(--vc-text-muted); margin-bottom: 20px; }
.card__bullets { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.card__bullet { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--vc-text); }
.card__bullet svg { flex: none; color: var(--vc-gold); margin-top: 3px; }
.card__price { font-family: var(--font-sans); font-size: 16px; color: var(--vc-navy); font-weight: 700; line-height: 1.3; }
.card__price-sub { color: var(--vc-text-muted); font-weight: 500; }
.card__promo { margin-top: 9px; font-size: 13px; color: var(--vc-text); display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.card__promo s { color: var(--vc-text-muted); }
.card__promo-label { font-weight: 600; color: var(--vc-navy); }
.card__promo-now { font-weight: 700; color: var(--vc-navy); background: rgba(176,136,40,0.16); padding: 1px 9px; border-radius: 999px; }

/* Front Desk Base/Pro tiers */
.card__tiers { display: flex; flex-direction: column; gap: 12px; }
.card__tier { padding-top: 12px; border-top: 1px solid rgba(52,35,58,0.08); }
.card__tier:first-child { padding-top: 0; border-top: 0; }
.card__tier-row { display: flex; align-items: baseline; gap: 8px; }
.card__tier-name { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vc-gold); flex: 0 0 auto; }
.card__tier-note { margin: 6px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--vc-text-muted); }

/* ============ How it works ============ */
.steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-top: 32px; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; gap: 32px; } }
.step__num {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1;
  background: linear-gradient(135deg,#b08828,#d4ad4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.step__title { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step__body { color: #9CA3AF; font-size: 15px; line-height: 1.6; }

/* ============ Chips ============ */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(52,35,58,0.20);
  font-size: 14px;
  font-weight: 500;
  color: var(--vc-navy);
  background: #fff;
}

/* ============ Trust columns ============ */
.trust-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-top: 28px; }
@media (max-width: 768px) { .trust-cols { grid-template-columns: 1fr; } }
.trust__icon {
  width: 44px; height: 44px;
  background: rgba(176,136,40,0.10);
  color: var(--vc-gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.trust__title { margin-bottom: 8px; }
.trust__body { font-size: 14.5px; line-height: 1.6; color: var(--vc-text-muted); }

/* ============ Pricing ============ */
.tiers { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 18px; margin-top: 40px; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  background: #fff;
  border: 1px solid var(--vc-border);
  border-radius: 12px;
  padding: 22px;
}
.tier__name { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--vc-gold); }
.tier__price { font-family: var(--font-serif); font-size: 28px; color: var(--vc-navy); line-height: 1.1; margin: 10px 0 6px; }
.tier__sub { font-size: 13px; color: var(--vc-text-muted); line-height: 1.5; }

/* ============ Mission band ============ */
.mission { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 768px) { .mission { grid-template-columns: 1fr; gap: 32px; } }
.mission__photo {
  background: linear-gradient(135deg, #d4b890 0%, #b89870 100%);
  border-radius: 24px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-style: italic;
  box-shadow: 0 20px 40px rgba(180,140,90,0.20);
  position: relative;
  overflow: hidden;
}
.mission__photo::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.25), transparent 60%);
}
.mission__photo span { position: relative; z-index: 1; }
.mission__small {
  font-size: 12px;
  color: var(--vc-text-light);
  font-style: italic;
  margin-top: 24px;
}

/* ============ FAQ ============ */
.faq { max-width: 760px; margin: 28px auto 0; }
.faq__item {
  border-bottom: 1px solid var(--vc-border);
  cursor: pointer;
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--vc-navy);
  gap: 16px;
}
.faq__chev { color: var(--vc-gold); transition: transform 250ms cubic-bezier(0.16,1,0.3,1); flex: none; }
.faq__item.open .faq__chev { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  padding: 0 4px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--vc-text-muted);
  transition: max-height 350ms cubic-bezier(0.16,1,0.3,1), padding 350ms;
}
.faq__item.open .faq__a {
  max-height: 200px;
  padding: 0 4px 18px;
}

/* ============ Proof ============ */
.proof-line {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.625rem);
  color: var(--vc-navy);
  max-width: 30ch;
  margin: 0 auto;
  line-height: 1.4;
}

/* ============ Footer / final CTA ============ */
.final {
  text-align: center;
  padding: 64px 0;
}
.final .h2 { color: #fff; margin-bottom: 12px; max-width: 22ch; margin-left: auto; margin-right: auto; }
.final__sub { color: #9CA3AF; margin-bottom: 32px; }
.final__buttons { justify-content: center; }
.footer { padding: 40px 0 32px; border-top: 1px solid rgba(176,136,40,0.20); text-align: center; }
.footer__row { color: #9CA3AF; font-size: 13px; }
.footer__row span { margin: 0 8px; color: rgba(255,255,255,0.2); }

/* ============ Tooltip / utility ============ */
.viz-note {
  background: rgba(176,136,40,0.10);
  color: var(--vc-navy);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(176,136,40,0.30);
  font-style: italic;
}

/* ============================================================
   ChaveOS — "from the same studio" credibility section
   ============================================================ */
.chaveos__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .chaveos__grid { grid-template-columns: 1fr; gap: 30px; } }
.chaveos__body { color: var(--vc-text-muted); font-size: 16px; line-height: 1.65; margin: 18px 0 26px; max-width: 46ch; }

/* ============================================================
   Capabilities — bento grid
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
@media (max-width: 860px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .bento { grid-template-columns: 1fr; } }
.bento__tile {
  background: #fff; border: 1px solid var(--vc-border); border-radius: 16px; padding: 24px;
  box-shadow: var(--shadow-card);
}
.bento__tile--big {
  grid-column: span 2; display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(135deg, #34233a 0%, #4a3550 100%); border-color: transparent;
}
@media (max-width: 540px) { .bento__tile--big { grid-column: span 1; } }
.bento__tile--big .bento__title { color: #fff; font-size: 19px; }
.bento__tile--big .bento__text { color: #cbd2dc; font-size: 15px; }
.bento__icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(176,136,40,0.12); color: var(--vc-gold); margin-bottom: 16px;
}
.bento__tile--big .bento__icon { background: rgba(176,136,40,0.20); }
.bento__title { font-family: var(--font-sans); font-weight: 700; font-size: 16px; color: var(--vc-navy); margin: 0 0 8px; }
.bento__text { font-size: 14px; line-height: 1.55; color: var(--vc-text-muted); margin: 0; }

/* ============================================================
   "See it work" — tabbed product showcase
   ============================================================ */
.showcase { position: relative; }
.showcase .eyebrow { color: var(--vc-gold); }
.tabs { display: flex; justify-content: center; gap: 10px; margin: 24px 0 34px; flex-wrap: wrap; }
.tab {
  font-family: var(--font-sans); font-weight: 700; font-size: 14px;
  color: var(--vc-text-light); background: rgba(255,255,255,0.05);
  border: 1px solid rgba(176,136,40,0.18); padding: 9px 22px; border-radius: 999px;
  cursor: pointer; transition: all 250ms var(--ease);
}
.tab:hover { color: #fff; border-color: rgba(176,136,40,0.42); }
.tab.is-active { color: var(--vc-navy); background: var(--vc-gold-gradient); border-color: transparent; }
.showcase__panel { display: none; }
.showcase__panel.is-active { display: block; }
.showcase__grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 860px) { .showcase__grid { grid-template-columns: 1fr; gap: 30px; } }
.showcase__img { display: block; width: 100%; height: auto; }
/* Browser chrome frame */
.frame--browser {
  background: #0e1726; border: 1px solid rgba(176,136,40,0.20); border-radius: 12px;
  overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
.frame__bar { display: flex; gap: 7px; padding: 11px 14px; background: #0b1322; border-bottom: 1px solid rgba(255,255,255,0.06); }
.frame__bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); }
/* Phone frame */
.frame--phone {
  position: relative; width: 296px; margin: 0 auto; background: #0b1424; border-radius: 42px;
  padding: 13px; box-shadow: 0 34px 64px rgba(0,0,0,0.46), 0 0 0 1px rgba(176,136,40,0.18);
}
.frame--phone .showcase__img { border-radius: 30px; display: block; }
.frame__notch {
  position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
  width: 124px; height: 26px; background: #0b1424; border-radius: 0 0 16px 16px; z-index: 2;
}
.frame__home {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 5px; border-radius: 999px; background: rgba(255,255,255,0.55); z-index: 2;
}
.showcase__copy h3 { color: #fff; font-size: 22px; margin-bottom: 18px; }
.showcase__bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.showcase__bullets li { display: flex; gap: 11px; align-items: flex-start; color: #cbd2dc; font-size: 15px; line-height: 1.5; }
.showcase__bullets li svg { color: var(--vc-gold); flex: none; margin-top: 3px; }

/* ============================================================
   Premium hero pass — depth, motion, signature details
   ============================================================ */

/* Phone halo glow (subtle, always on) */
[data-hero-right] { position: relative; }
[data-hero-right]::before {
  content: ""; position: absolute; top: 6%; left: 50%; transform: translateX(-50%);
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(176,136,40,0.20), transparent 62%);
  filter: blur(34px); z-index: 0; pointer-events: none;
}
[data-hero-right] > * { position: relative; z-index: 1; }

.hero { position: relative; }
.hero > .container { position: relative; z-index: 2; }

/* Hero stat strip */
.hero__stats { display: grid; grid-template-columns: repeat(2, max-content); gap: 18px 30px; margin-top: 30px; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat + .hero__stat { border-left: 1px solid rgba(176,136,40,0.22); padding-left: 30px; }
.hero__stat:nth-child(odd) { border-left: 0; padding-left: 0; }
.hero__stat-num { font-family: var(--font-serif); font-size: 1.95rem; line-height: 1; color: #fff; }
.hero__stat-label { font-size: 12px; color: var(--vc-text-light); margin-top: 7px; letter-spacing: 0.01em; }

@media (prefers-reduced-motion: no-preference) {
  /* Aurora: slow-drifting blooms */
  .hero__bloom-1 { animation: vcBloom1 22s var(--ease) infinite alternate; }
  .hero__bloom-2 { animation: vcBloom2 27s var(--ease) infinite alternate; }
  @keyframes vcBloom1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-70px,46px) scale(1.18); } }
  @keyframes vcBloom2 { from { transform: translate(0,0) scale(1); } to { transform: translate(54px,-34px) scale(1.22); } }

  /* Hero content entrance, staggered */
  .hero__grid > div > .eyebrow,
  .hero__grid > div > .h1,
  .hero__grid > div > .lead,
  .hero__grid > div > .btn-row,
  .hero__grid > div > .hero__stats { opacity: 0; transform: translateY(22px); animation: vcHeroIn 0.9s var(--ease) forwards; }
  .hero__grid > div > .h1 { animation-delay: 0.10s; }
  .hero__grid > div > .lead { animation-delay: 0.20s; }
  .hero__grid > div > .btn-row { animation-delay: 0.30s; }
  .hero__grid > div > .hero__stats { animation-delay: 0.42s; }
  [data-hero-right] { opacity: 0; animation: vcHeroIn 1s var(--ease) 0.28s forwards; }
  @keyframes vcHeroIn { to { opacity: 1; transform: none; } }

  /* Living, floating device */
  [data-hero-right] .phone { animation: vcFloat 6.5s ease-in-out infinite; }
  @keyframes vcFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

  /* Gold headline sheen */
  .gold-grad {
    background: linear-gradient(110deg,#b08828 0%,#d4ad4e 26%,#fff4d6 50%,#d4ad4e 74%,#b08828 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: vcSheen 6.5s linear infinite;
  }
  @keyframes vcSheen { from { background-position: 200% 0; } to { background-position: -60% 0; } }

  /* Button shine sweep on hover */
  .btn--green { position: relative; overflow: hidden; }
  .btn--green::after {
    content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.40), transparent);
    transform: skewX(-20deg); pointer-events: none;
  }
  .btn--green:hover::after { animation: vcShine 0.8s var(--ease); }
  @keyframes vcShine { to { left: 170%; } }
}

/* ============================================================
   Services-tier card jump-link ("Ver a funcionar →")
   ============================================================ */
.card__demo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--vc-gold);
  transition: gap 220ms cubic-bezier(0.16,1,0.3,1), color 220ms;
}
.card__demo-link:hover { gap: 11px; color: #b08828; }

/* ============================================================
   "Veja a funcionar" — interactive demo hub
   ============================================================ */
.demo { position: relative; overflow: hidden; }
.demo .eyebrow { color: var(--vc-gold); }
.demo__sub {
  text-align: center;
  max-width: 54ch;
  margin: 14px auto 0;
  color: #cbd2dc;
  font-size: 15px;
  line-height: 1.55;
}
.demo__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}
.demo__pkg {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 15px;
  border-radius: 999px;
  background: rgba(176,136,40,0.12);
  border: 1px solid rgba(176,136,40,0.38);
  color: var(--vc-gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.demo__pkg:empty { display: none; }
.demo__visual { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.demo__frame { margin: 0 auto; }
.demo__caption {
  max-width: 30ch;
  text-align: center;
  color: #9CA3AF;
  font-size: 12.5px;
  line-height: 1.5;
  margin: 2px auto 0;
}
.demo__chips { max-width: 540px; }
.demo__foot {
  text-align: center;
  max-width: 48ch;
  margin: 4px auto 0;
  color: var(--vc-text-light);
  font-size: 12px;
  font-style: italic;
}

/* ============================================================
   Human-in-the-loop band ("A IA prepara. Você decide.")
   ============================================================ */
.hitl__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.hitl__body {
  font-size: 17px;
  line-height: 1.62;
  color: var(--vc-text);
  margin: 16px auto 0;
  max-width: 58ch;
}
.hitl__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
  margin-top: 26px;
}
.hitl__point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--vc-border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--vc-navy);
  box-shadow: 0 1px 2px rgba(36,24,41,0.04);
}
.hitl__point svg { color: var(--vc-gold); flex: none; }

/* ============ Kept "Coming soon" (mission section) ============ */
/* The section stays readable; the CTA is a non-clickable disabled state and a
   diagonal ribbon sits on the photo. Kept is not yet open to the public. */
.btn--soon {
  cursor: default;
  opacity: 0.85;
  pointer-events: none; /* belt-and-braces: never navigates */
}
.btn--soon:hover { background: transparent; border-color: rgba(52,35,58,0.30); }
.btn__soon-tag {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--vc-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* A semi-transparent "Coming soon" band stretched diagonally ACROSS the whole
   book, so visitors clearly read that Kept isn't live yet (Gene, 2026-06-17 —
   replaced the small corner ribbon). Depends on .mission__photo `overflow: hidden`
   to clip the band's ends. Selector scoped to .mission__photo so it outranks the
   `.mission__photo span` rule (which would otherwise force position:relative). */
.mission__photo .kept-ribbon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -12%;
  width: 124%;
  transform: translateY(-50%) rotate(-11deg);
  text-align: center;
  padding: 15px 0;
  background: rgba(52,35,58,0.40);
  color: #fff;
  font-size: clamp(18px, 4.4vw, 30px);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.38);
  border-bottom: 1px solid rgba(255,255,255,0.38);
  box-shadow: 0 8px 28px rgba(36,24,41,0.28);
}
@supports (backdrop-filter: blur(2px)) { .kept-ribbon { backdrop-filter: blur(1.5px); } }

/* ============ Pulse on the WhatsApp CTAs (dogfood emphasis) ============ */
.btn--pulse { position: relative; }
.btn--pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(39,174,96,0.55);
  animation: vcBtnPulse 2.2s cubic-bezier(0.16,1,0.3,1) infinite;
  pointer-events: none;
}
@keyframes vcBtnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(39,174,96,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(39,174,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(39,174,96,0); }
}

/* ============ Floating WhatsApp button (always-visible chat nudge) ============ */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 58px;
  padding: 0 17px;
  border-radius: 999px;
  background: #27AE60;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(39,174,96,0.40), 0 2px 6px rgba(0,0,0,0.18);
  transition: transform 250ms cubic-bezier(0.16,1,0.3,1), box-shadow 250ms;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(39,174,96,0.50), 0 2px 6px rgba(0,0,0,0.20); }
.wa-float__glyph { display: inline-flex; flex: none; }
.wa-float__label { max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0; transition: max-width 320ms cubic-bezier(0.16,1,0.3,1), opacity 220ms, margin-left 320ms; }
.wa-float:hover .wa-float__label,
.wa-float:focus-visible .wa-float__label { max-width: 220px; opacity: 1; margin-left: 10px; }
/* Expanding pulse ring behind the button */
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #27AE60;
  z-index: -1;
  animation: vcFloatPulse 2.4s cubic-bezier(0.16,1,0.3,1) infinite;
  pointer-events: none;
}
@keyframes vcFloatPulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
@media (max-width: 768px) {
  .wa-float { right: 16px; bottom: 16px; height: 54px; padding: 0 15px; }
  /* On small screens the label stays collapsed (icon-only) to avoid covering content. */
}

@media (prefers-reduced-motion: reduce) {
  .btn--pulse::before,
  .wa-float__pulse { animation: none; }
  .wa-float__pulse { opacity: 0; }
}
