/* ════════════════════════════════════════════════════════════════
   HYPERFLOW · DESIGN SYSTEM v3 — buzzkit + Claude Design
   Identidade roxa Hyperflow saturada, layouts ricos, cards flutuantes,
   gradientes em fundos de seção sem prejudicar legibilidade.
═══════════════════════════════════════════════════════════════════ */

/* 1 · WEBFONTS — Schibsted Grotesk + Geist Mono */
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("brand/fonts/SchibstedGrotesk-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("brand/fonts/SchibstedGrotesk-Medium.ttf") format("truetype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("brand/fonts/SchibstedGrotesk-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("brand/fonts/SchibstedGrotesk-ExtraBold.ttf") format("truetype");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("brand/fonts/SchibstedGrotesk-Black.ttf") format("truetype");
  font-weight: 900; font-style: normal; font-display: swap;
}
@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;500;600&display=swap");

/* 2 · DESIGN TOKENS — roxo Hyperflow saturado */
:root {
  /* Core brand */
  --hf-navy:        #24135f;
  --hf-navy-deep:   #1a0d4a;
  --hf-purple:      #685bc7;
  --hf-purple-bright: #7c6df0;
  --hf-purple-deep: #463786;
  --hf-lavender:    #d5d0fc;
  --hf-lavender-soft: #efedff;
  --hf-lavender-deep: #c4bcf2;
  --hf-sage:        #d9f5c4;
  --hf-sage-deep:   #b8e8a0;
  --hf-pink-soft:   #fce0e8;
  --hf-peach-soft:  #ffe8d6;

  /* Slate */
  --hf-slate-50:  #f8fafc;
  --hf-slate-100: #f1f5f9;
  --hf-slate-200: #e2e8f0;
  --hf-slate-300: #cbd5e1;
  --hf-slate-400: #94a3b8;
  --hf-slate-500: #64748b;
  --hf-slate-600: #475569;
  --hf-slate-700: #334155;
  --hf-slate-800: #1e293b;
  --hf-slate-900: #0f172a;
  --hf-white: #ffffff;

  /* Gradientes */
  --hf-grad-brand:  linear-gradient(135deg, #685bc7 0%, #24135f 100%);
  --hf-grad-soft:   linear-gradient(135deg, #efedff 0%, #f8fafc 50%, #e3def8 100%);
  --hf-grad-hero:   radial-gradient(1100px 700px at 80% -10%, rgba(213,208,252,.7) 0%, transparent 55%),
                    radial-gradient(900px 600px at -10% 110%, rgba(217,245,196,.5) 0%, transparent 55%),
                    linear-gradient(180deg, #fafaff 0%, #ffffff 60%);
  --hf-grad-cta:    linear-gradient(135deg, #24135f 0%, #463786 50%, #685bc7 100%);
  --hf-grad-pastel: linear-gradient(135deg, #d5d0fc 0%, #efedff 25%, #ffe8d6 60%, #fce0e8 100%);
  --hf-grad-text:   linear-gradient(90deg, #685bc7 0%, #24135f 100%);

  /* Sombras */
  --hf-sh-xs:  0 1px 2px rgba(36, 19, 95, 0.06);
  --hf-sh-sm:  0 2px 8px rgba(36, 19, 95, 0.08);
  --hf-sh-md:  0 8px 24px rgba(36, 19, 95, 0.10);
  --hf-sh-lg:  0 20px 48px rgba(36, 19, 95, 0.14);
  --hf-sh-xl:  0 32px 80px rgba(36, 19, 95, 0.18);
  --hf-sh-2xl: 0 48px 120px rgba(36, 19, 95, 0.25);
  --hf-sh-purple: 0 16px 40px -8px rgba(104, 91, 199, 0.45);

  /* Raios */
  --hf-r-sm: 10px;
  --hf-r-md: 14px;
  --hf-r-lg: 20px;
  --hf-r-xl: 28px;
  --hf-r-2xl: 36px;
  --hf-r-3xl: 48px;
  --hf-r-pill: 999px;

  /* Easing */
  --hf-ease: cubic-bezier(.22,1,.36,1);
  --hf-spring: cubic-bezier(.34,1.56,.64,1);

  /* Map para tokens antigos */
  --primary:      var(--hf-navy);
  --secondary:    var(--hf-purple);
  --purple-light: var(--hf-lavender);
  --bg-off:       var(--hf-lavender-soft);
  --text:         var(--hf-navy);
  --text-body:    var(--hf-slate-700);
  --text-muted:   var(--hf-slate-500);
  --wa-green:     #25D366;
}

/* 3 · BASE — body, tipografia ───────────────────────────────────── */
html, body {
  font-family: "Schibsted Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif !important;
  color: var(--hf-slate-900) !important;
  background: var(--hf-white) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01" on, "ss02" on;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6,
.section-title, .hero h1,
.platform-title, .meta-partner-title,
[class*="title"]:not(.modal-header):not(.lightbox-title) {
  font-family: "Schibsted Grotesk", system-ui, sans-serif !important;
  color: var(--hf-navy) !important;
  letter-spacing: -0.025em;
}

h1, .hero h1 {
  font-weight: 800 !important;
  letter-spacing: -0.034em !important;
  line-height: 1.06 !important;
  font-size: clamp(36px, 5vw, 64px) !important;
}
h2, .section-title, .platform-title {
  font-weight: 800 !important;
  letter-spacing: -0.028em !important;
  line-height: 1.12 !important;
  font-size: clamp(28px, 3.4vw, 48px) !important;
}
h3 { font-weight: 700 !important; letter-spacing: -0.018em !important; }

p, .section-sub, .lede, .hero-sub, .hero-h2 {
  color: var(--hf-slate-600) !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}
.hero-h2 { font-weight: 600 !important; color: var(--hf-navy) !important; font-size: clamp(18px,2vw,22px) !important; }
.hero-sub { font-size: 17px !important; max-width: 580px; }
.section-sub { font-size: 18px !important; }

code, pre, [class*="mono"] {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace !important;
}

/* Gradient text para destaques */
.hero h1 em,
.hf-grad-text,
.platform-title b,
.section-title em {
  background: var(--hf-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--hf-purple);
  font-style: normal;
  display: inline;
  font-weight: inherit;
}

/* Eyebrows premium */
.section-label, .platform-subtitle, .logos-label,
[class*="eyebrow"] {
  font-family: "Geist Mono", ui-monospace, monospace !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  color: var(--hf-purple) !important;
  margin-bottom: 18px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--hf-grad-brand);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(104,91,199,.15);
}

/* 4 · BOTÕES — premium roxo com efeitos sutis ────────────────── */
.btn-primary, button.btn-primary, a.btn-primary,
.cta-btn-hero, .navbar-cta {
  background: var(--hf-grad-brand) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--hf-r-pill) !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: -0.005em;
  box-shadow: var(--hf-sh-purple);
  transition: transform 280ms var(--hf-ease), box-shadow 280ms var(--hf-ease), filter 280ms var(--hf-ease) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary::after, .cta-btn-hero::after, .navbar-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 900ms var(--hf-ease);
  z-index: -1;
}
.btn-primary:hover, .cta-btn-hero:hover, .navbar-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 24px 48px -10px rgba(104, 91, 199, 0.55) !important;
  filter: brightness(1.05);
}
.btn-primary:hover::after, .cta-btn-hero:hover::after, .navbar-cta:hover::after {
  transform: translateX(120%);
}

.btn-secondary, .btn-outline, .btn-white {
  background: rgba(255,255,255,.9) !important;
  color: var(--hf-navy) !important;
  border: 1px solid var(--hf-slate-200) !important;
  border-radius: var(--hf-r-pill) !important;
  padding: 14px 26px !important;
  font-weight: 600 !important;
  transition: all 240ms var(--hf-ease) !important;
  text-decoration: none;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}
.btn-secondary:hover, .btn-outline:hover, .btn-white:hover {
  border-color: var(--hf-purple) !important;
  color: var(--hf-purple) !important;
  transform: translateY(-2px);
  box-shadow: var(--hf-sh-md) !important;
}

/* 5 · NAVBAR ────────────────────────────────────────────────── */
.navbar, header.navbar {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: saturate(200%) blur(20px);
  -webkit-backdrop-filter: saturate(200%) blur(20px);
  border-bottom: 1px solid var(--hf-slate-100) !important;
  box-shadow: none !important;
  transition: all 240ms var(--hf-ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom-color: var(--hf-slate-200) !important;
  box-shadow: var(--hf-sh-sm) !important;
}
.navbar-logo, .navbar-logo-white { max-height: 32px !important; width: auto !important; }

/* 6 · HERO ── fundo gradient lavanda + blobs decorativos ───── */
.hero, section.hero {
  background: var(--hf-grad-hero) !important;
  position: relative;
  overflow: hidden;
  padding-top: 100px !important;
  padding-bottom: 80px !important;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(104,91,199,.18) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: hfFloat 14s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -100px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,245,196,.40) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: hfFloat 18s ease-in-out -3s infinite;
}
@keyframes hfFloat {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(20px, -16px); }
}
.hero > * { position: relative; z-index: 1; }

/* Hero badge */
.hero-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 8px 16px !important;
  background: rgba(255,255,255,.85) !important;
  border: 1px solid var(--hf-lavender) !important;
  border-radius: var(--hf-r-pill) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--hf-navy) !important;
  box-shadow: var(--hf-sh-sm) !important;
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}

/* Hero tags pills */
.hero-tags {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 !important;
}
.hero-tag {
  display: inline-flex !important;
  align-items: center;
  padding: 6px 14px !important;
  background: var(--hf-white) !important;
  border: 1px solid var(--hf-slate-200) !important;
  border-radius: var(--hf-r-pill) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--hf-slate-700) !important;
  box-shadow: var(--hf-sh-xs);
  transition: all 200ms var(--hf-ease);
}
.hero-tag:hover {
  border-color: var(--hf-purple);
  color: var(--hf-purple);
  transform: translateY(-1px);
}

/* Hero proof inline */
.hero-proof {
  display: flex !important;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px !important;
  padding-top: 32px;
  border-top: 1px solid var(--hf-slate-200);
}
.hero-proof-item {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--hf-slate-700);
  font-weight: 500;
}
.hero-proof-item i {
  color: var(--hf-purple);
  font-size: 16px;
  background: var(--hf-lavender-soft);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hero visual — frame + animações flutuantes */
.hero-visual {
  position: relative;
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: -40px; left: -40px; right: -40px; bottom: -40px;
  background: radial-gradient(circle at 50% 40%, rgba(104,91,199,.12), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero-screenshot {
  position: relative;
  z-index: 1;
  border-radius: var(--hf-r-2xl) !important;
  box-shadow: var(--hf-sh-2xl) !important;
  background: var(--hf-white);
}

/* Cards flutuantes do hero (injetados via HTML) */
.hf-float-card {
  position: absolute;
  background: var(--hf-white);
  border: 1px solid var(--hf-slate-200);
  border-radius: var(--hf-r-lg);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--hf-sh-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--hf-navy);
  z-index: 2;
  animation: hfBobble 6s ease-in-out infinite;
  max-width: 260px;
}
.hf-float-card .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.hf-float-card .icon-wa { background: #25D36622; color: #25D366; }
.hf-float-card .icon-ai { background: linear-gradient(135deg, #685bc7, #24135f); color: #fff; }
.hf-float-card .icon-meta { background: #1877F222; color: #1877F2; }
.hf-float-card .icon-stat { background: var(--hf-sage); color: #1d6b3f; }
.hf-float-card small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--hf-slate-500);
  margin-top: 2px;
}
.hf-float-card.top-left   { top: -8%;  left: -6%; animation-delay: -1s; }
.hf-float-card.top-right  { top:  8%;  right: -8%; animation-delay: -2.5s; }
.hf-float-card.mid-left   { top: 45%;  left: -12%; animation-delay: -1.5s; }
.hf-float-card.bot-right  { bottom: 6%; right: -10%; animation-delay: -3s; }
@keyframes hfBobble {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* 7 · SEÇÃO DE VÍDEO (nova) ───────────────────────────────── */
.hf-video-section {
  padding: 88px 24px;
  background: linear-gradient(180deg, var(--hf-white) 0%, var(--hf-lavender-soft) 100%);
  position: relative;
  overflow: hidden;
}
.hf-video-section::before, .hf-video-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.hf-video-section::before {
  top: -120px; right: 5%; width: 360px; height: 360px;
  background: rgba(213,208,252,.5);
}
.hf-video-section::after {
  bottom: -100px; left: -5%; width: 300px; height: 300px;
  background: rgba(217,245,196,.4);
}
.hf-video-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hf-video-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.hf-video-head .section-label { justify-content: center; }
.hf-video-frame {
  position: relative;
  border-radius: var(--hf-r-3xl);
  overflow: hidden;
  box-shadow: var(--hf-sh-2xl);
  background: var(--hf-navy);
  aspect-ratio: 16 / 9;
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid var(--hf-lavender);
}
.hf-video-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--hf-r-3xl);
  background: var(--hf-grad-brand);
  z-index: -1;
  filter: blur(20px);
  opacity: .25;
}
.hf-video-frame iframe {
  width: 100%; height: 100%; border: 0;
}
.hf-video-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 56px auto 0;
}
.hf-video-stat {
  background: var(--hf-white);
  border: 1px solid var(--hf-slate-200);
  border-radius: var(--hf-r-xl);
  padding: 24px 22px;
  text-align: left;
  box-shadow: var(--hf-sh-sm);
  transition: all 240ms var(--hf-ease);
}
.hf-video-stat:hover {
  transform: translateY(-4px);
  border-color: var(--hf-lavender);
  box-shadow: var(--hf-sh-lg);
}
.hf-video-stat .num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--hf-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
}
.hf-video-stat .label {
  font-size: 13px;
  color: var(--hf-slate-600);
  margin-top: 6px;
  display: block;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hf-video-stats { grid-template-columns: repeat(2, 1fr); }
  .hf-video-section { padding: 64px 16px; }
}

/* 8 · LOGOS — refinamento ───────────────────────────────── */
.logos-section {
  background: var(--hf-white) !important;
  padding: 32px 0 56px !important;
  border-top: 1px solid var(--hf-slate-100);
  border-bottom: 1px solid var(--hf-slate-100);
}
.logos-label {
  font-family: "Geist Mono", monospace !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  color: var(--hf-slate-500) !important;
  text-transform: uppercase;
  text-align: center;
}

/* 9 · CARDS (todos os tipos) ────────────────────────────── */
.pain-card, .benefit-card, .platform-card, .sector-card,
.case-card, .feature-card, .ganho-card,
.why-card, .hf-seal-card, .int-feature-card {
  background: var(--hf-white) !important;
  border: 1px solid var(--hf-slate-200) !important;
  border-radius: var(--hf-r-xl) !important;
  box-shadow: var(--hf-sh-xs) !important;
  transition: transform 320ms var(--hf-ease), box-shadow 320ms var(--hf-ease), border-color 320ms var(--hf-ease) !important;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
}
.pain-card:hover, .benefit-card:hover, .platform-card:hover,
.sector-card:hover, .case-card:hover, .feature-card:hover,
.ganho-card:hover, .why-card:hover, .int-feature-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--hf-lavender) !important;
  box-shadow: var(--hf-sh-lg) !important;
}

/* Pain cards com ícone gradiente */
.pain-card .pain-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--hf-lavender-soft), var(--hf-lavender));
  border-radius: var(--hf-r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

/* Benefit destaque */
.benefit-card.highlight {
  background: linear-gradient(135deg, var(--hf-lavender-soft), var(--hf-white)) !important;
  border-color: var(--hf-lavender) !important;
  position: relative;
}
.benefit-card.highlight::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--hf-r-xl);
  background: var(--hf-grad-brand);
  z-index: -1;
  opacity: .8;
  padding: 1.5px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.benefit-card .benefit-icon, .why-card .why-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--hf-lavender-soft), var(--hf-lavender));
  border-radius: var(--hf-r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--hf-purple);
  margin-bottom: 18px;
}

/* Sector cards */
.sector-card .sector-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--hf-purple), var(--hf-navy));
  border-radius: var(--hf-r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 18px;
}
.sector-card { background: var(--hf-white) !important; color: var(--hf-navy) !important; }
.sector-card h3 { color: var(--hf-navy) !important; }
.sector-card p { color: var(--hf-slate-600) !important; }
.sector-link {
  color: var(--hf-purple) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

/* Case cards */
.case-card {
  padding: 0 !important;
  overflow: hidden;
}
.case-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--hf-slate-100);
}
.case-card-body { padding: 24px 26px; }
.case-card-link {
  color: var(--hf-purple) !important;
  font-weight: 600 !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

/* Int feature card */
.int-feature-card {
  padding: 20px 22px !important;
  display: flex;
  align-items: center;
  gap: 14px;
}
.int-feature-card i {
  width: 40px; height: 40px;
  background: var(--hf-lavender-soft);
  color: var(--hf-purple);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

/* 10 · SEÇÕES — backgrounds alternados sutis ─────────────── */
body, html { background: var(--hf-white) !important; }
section { background: transparent; }

/* Pain section — gradient sutil */
.pain-section {
  background: linear-gradient(180deg, var(--hf-white) 0%, var(--hf-lavender-soft) 100%) !important;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.pain-section::before {
  content: "";
  position: absolute;
  top: 20%; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(213,208,252,.5), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

/* Benefits — alternar */
.benefits-section {
  background: var(--hf-white) !important;
  padding: 96px 24px;
  position: relative;
}

/* Platform */
.platform-section {
  background: linear-gradient(180deg, var(--hf-lavender-soft) 0%, var(--hf-white) 100%) !important;
  padding: 96px 24px;
}

/* Sectors — gradient roxo escuro */
.sectors-section {
  background: var(--hf-grad-cta) !important;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.sectors-section::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(213,208,252,.18), transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.sectors-section .section-title { color: #fff !important; }
.sectors-section .section-sub  { color: rgba(255,255,255,.78) !important; }
.sectors-section .section-label { color: var(--hf-lavender) !important; }
.sectors-section .section-label::before { background: var(--hf-lavender); box-shadow: 0 0 0 4px rgba(213,208,252,.20); }
.sectors-section .btn-white {
  background: #fff !important;
  color: var(--hf-navy) !important;
}

/* Integrations */
.integrations-section {
  background: var(--hf-white) !important;
  padding: 96px 24px;
}
.int-gif-wrap {
  max-width: 1100px;
  margin: 32px auto;
  border-radius: var(--hf-r-2xl);
  overflow: hidden;
  box-shadow: var(--hf-sh-xl);
  background: var(--hf-lavender-soft);
  padding: 24px;
}
.int-gif-wrap img { display: block; width: 100%; height: auto; }

/* Why */
.why-section {
  background: linear-gradient(180deg, var(--hf-white) 0%, var(--hf-lavender-soft) 100%) !important;
  padding: 96px 24px;
}

/* Testimonials / Cases */
.testimonials-section {
  background: var(--hf-white) !important;
  padding: 96px 24px;
}

/* FAQ */
.faq-section {
  background: var(--hf-lavender-soft) !important;
  padding: 96px 24px;
}
.faq-item {
  background: var(--hf-white);
  border: 1px solid var(--hf-slate-200);
  border-radius: var(--hf-r-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 240ms var(--hf-ease);
}
.faq-item:hover { border-color: var(--hf-lavender); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--hf-navy);
}

/* 11 · CTA SECTION — gradient com form branco ────────────── */
.cta-section {
  background: var(--hf-grad-cta) !important;
  position: relative;
  padding: 96px 24px !important;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -200px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(213,208,252,.20), transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,245,196,.15), transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; }

.cta-section .section-title,
.cta-section .cta-copy h2 { color: #fff !important; }
.cta-section .section-sub,
.cta-section .cta-copy p { color: rgba(255,255,255,.85) !important; }
.cta-section .section-label { color: var(--hf-lavender) !important; }
.cta-section .section-label::before { background: var(--hf-lavender); box-shadow: 0 0 0 4px rgba(213,208,252,.25); }
.cta-section .cta-list li,
.cta-section .cta-list-centered li {
  color: rgba(255,255,255,.92) !important;
}
.cta-section .cta-list i,
.cta-section .cta-list-centered i {
  color: var(--hf-sage) !important;
}
.cta-section .seal {
  background: rgba(255,255,255,.10) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  backdrop-filter: blur(8px);
}

/* form-box premium */
.cta-section .form-box {
  background: var(--hf-white) !important;
  border: 1px solid var(--hf-slate-200) !important;
  border-radius: var(--hf-r-2xl) !important;
  box-shadow: var(--hf-sh-2xl) !important;
  position: relative;
}
.cta-section .form-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--hf-grad-brand);
  border-radius: var(--hf-r-2xl);
  z-index: -1;
  opacity: .5;
  filter: blur(16px);
}
.form-box .hf-btn {
  background: var(--hf-grad-brand) !important;
  border-radius: var(--hf-r-pill) !important;
  font-weight: 600 !important;
  padding: 13px !important;
  box-shadow: var(--hf-sh-purple);
}
.form-box .hf-btn:hover { filter: brightness(1.05); }
.form-box .hf-input:focus {
  border-color: var(--hf-purple) !important;
  box-shadow: 0 0 0 3px rgba(104,91,199,.16) !important;
}
.form-box .hf-pf { background: var(--hf-grad-brand) !important; }
.form-box .hf-radio:hover { border-color: var(--hf-purple) !important; }
.form-box .hf-radio input { accent-color: var(--hf-purple) !important; }

/* 12 · META PARTNER ───────────────────────────────────── */
.meta-partner-new {
  background: linear-gradient(135deg, var(--hf-lavender-soft) 0%, #fff 50%, var(--hf-pink-soft) 100%) !important;
  border-radius: var(--hf-r-3xl) !important;
  border: 1px solid var(--hf-lavender) !important;
  max-width: 1200px;
  margin: 80px auto !important;
  padding: 56px 48px !important;
  box-shadow: var(--hf-sh-lg);
}
.meta-partner-title { color: var(--hf-navy) !important; }
.meta-partner-sub { color: var(--hf-slate-700) !important; }
.hf-seal-card {
  padding: 16px !important;
  background: rgba(255,255,255,.7) !important;
  backdrop-filter: blur(8px);
}

/* 13 · FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--hf-navy) !important;
  color: #fff !important;
  padding: 64px 24px 40px !important;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(104,91,199,.25), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.footer-social {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms var(--hf-ease);
}
.footer-social:hover {
  background: var(--hf-purple);
  border-color: var(--hf-purple);
  transform: translateY(-2px);
}
.footer-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--hf-r-pill);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
}

/* 14 · BADGES / CHIPS / SEALS ────────────────────────── */
.badge, .seal, .chip, .modal-badge {
  border-radius: var(--hf-r-pill) !important;
  background: var(--hf-white) !important;
  border: 1px solid var(--hf-slate-200) !important;
  color: var(--hf-slate-700) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  padding: 6px 14px !important;
  box-shadow: var(--hf-sh-xs) !important;
}

/* 15 · ANIMAÇÕES & MICROINTERAÇÕES ───────────────────── */
@keyframes hfFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.fade-up { opacity: 0; animation: hfFadeUp .9s var(--hf-ease) forwards; }
.fade-up.visible { opacity: 1; }
.fade-up.d1 { animation-delay: .10s; }
.fade-up.d2 { animation-delay: .20s; }
.fade-up.d3 { animation-delay: .30s; }
.fade-up.d4 { animation-delay: .40s; }

/* 16 · UTILS ────────────────────────────────────────── */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--hf-white); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--hf-purple), var(--hf-navy));
  border-radius: var(--hf-r-pill);
  border: 3px solid var(--hf-white);
}
::-webkit-scrollbar-thumb:hover { filter: brightness(1.1); }
::selection { background: var(--hf-lavender); color: var(--hf-navy); }

*:focus-visible { outline: 2px solid var(--hf-purple) !important; outline-offset: 3px; }

a { color: var(--hf-navy); text-underline-offset: 3px; transition: color 160ms var(--hf-ease); }
a:hover { color: var(--hf-purple); }

/* ════════════════════════════════════════════════════════════════
   v3.1 — AJUSTES: fundos escuros, centralização global, mobile
═══════════════════════════════════════════════════════════════════ */

/* 18 · FUNDOS ESCUROS — títulos e textos brancos ─────────── */
/* Seções com background escuro/roxo onde o texto precisa ser branco */
.cta-section,
.sectors-section,
.footer,
[class*="dark"],
[style*="background: var(--hf-grad-cta)"],
[style*="background: var(--hf-grad-brand)"] {
  color: #ffffff;
}

.cta-section h1, .cta-section h2, .cta-section h3, .cta-section h4,
.cta-section .section-title, .cta-section .platform-title,
.cta-section [class*="title"]:not(.lightbox-title):not(.modal-header):not(.form-box *):not(.hf-form *),
.sectors-section h1, .sectors-section h2, .sectors-section h3, .sectors-section h4,
.sectors-section .section-title,
.sectors-section [class*="title"]:not(.lightbox-title):not(.modal-header),
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5,
.footer [class*="title"] {
  color: #ffffff !important;
}

.cta-section p, .cta-section li, .cta-section span,
.cta-section .section-sub, .cta-section .cta-copy p,
.sectors-section p, .sectors-section li, .sectors-section span,
.sectors-section .section-sub,
.footer p, .footer span, .footer li {
  color: rgba(255, 255, 255, 0.86) !important;
}

/* Mas dentro do form-box (que é branco), volta para escuro */
.cta-section .form-box,
.cta-section .form-box * {
  color: var(--hf-slate-900);
}
.cta-section .form-box h1,
.cta-section .form-box h2,
.cta-section .form-box h3,
.cta-section .form-box h4,
.cta-section .form-box [class*="title"] {
  color: var(--hf-navy) !important;
}
.cta-section .form-box .hf-label { color: #374151 !important; }
.cta-section .form-box .hf-input,
.cta-section .form-box .hf-input::placeholder { color: var(--hf-slate-900); }
.cta-section .form-box .hf-radio { color: var(--hf-slate-700); }

/* Sector cards no fundo escuro — manter brancos com texto escuro DENTRO */
.sectors-section .sector-card {
  background: rgba(255,255,255,0.97) !important;
}
.sectors-section .sector-card h3,
.sectors-section .sector-card p,
.sectors-section .sector-card span {
  color: var(--hf-navy) !important;
}
.sectors-section .sector-card p { color: var(--hf-slate-600) !important; }
.sectors-section .sector-card .sector-link { color: var(--hf-purple) !important; }

/* eyebrow em fundo escuro = lavanda claro */
.cta-section .section-label,
.sectors-section .section-label,
.footer .section-label,
.hf-video-section .section-label {
  color: var(--hf-lavender) !important;
}

/* 19 · CENTRALIZAÇÃO GLOBAL ────────────────────────────── */
.hero, .hero-inner, .hero-copy {
  text-align: center !important;
}
.hero-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 48px;
}
.hero-copy {
  max-width: 820px;
  margin: 0 auto !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge, .hero-tags, .hero-ctas, .hero-proof {
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero-sub, .hero-h2 {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
.hero-visual {
  margin: 0 auto !important;
  max-width: 900px;
  width: 100%;
}

/* Section headers — centralizados */
.pain-section, .benefits-section, .platform-section,
.sectors-section, .integrations-section, .why-section,
.testimonials-section, .faq-section, .cta-section,
.hf-video-section {
  text-align: center;
}
.section-label, .platform-subtitle,
.section-title, .platform-title,
.section-sub, .platform-bottom-text {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.section-sub, .platform-bottom-text {
  max-width: 760px;
}

/* CTA Grid — centralizar */
.cta-grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 48px;
  text-align: center !important;
}
.cta-copy, .cta-copy-top, .cta-copy-bottom {
  text-align: center !important;
  max-width: 720px;
  margin: 0 auto !important;
  align-self: center !important;
}
.cta-copy .section-label,
.cta-copy h2,
.cta-copy .section-title,
.cta-copy p,
.cta-copy .section-sub {
  text-align: center !important;
}
.cta-list, .cta-list-centered {
  text-align: left;
  display: inline-block;
  margin: 0 auto !important;
  max-width: 520px;
}
.cta-seals {
  justify-content: center !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
}
.cta-section .form-box {
  margin: 0 auto !important;
  width: 100%;
  max-width: 560px;
}

/* CTAs (botões) sempre centralizados */
.pain-cta, .benefits-cta, .platform-cta,
.sectors-cta, .cases-cta, .credito-cta, .compare-cta {
  text-align: center !important;
}

/* Listas de check no hero / sections centralizadas */
.hero-proof { justify-content: center !important; }

/* Meta partner centralizado */
.meta-partner-new .meta-partner-inner {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.meta-partner-new .meta-partner-text { text-align: center; max-width: 720px; }
.meta-partner-new .meta-seals-inline { justify-content: center !important; }
.meta-partner-new .meta-partner-img-wrap { display: flex; justify-content: center; }
.meta-partner-new .meta-partner-img { max-width: 100%; height: auto; }

/* Integrations centralizado */
.integrations-section .int-features-grid {
  max-width: 1000px;
  margin: 0 auto;
}
.integrations-section .int-below {
  text-align: center;
}
.integrations-section .int-below-desc {
  max-width: 760px;
  margin: 0 auto 32px !important;
}

/* Why grid */
.why-section .why-grid { text-align: center; }

/* Footer centralizado */
.footer .footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer .footer-socials,
.footer .footer-links,
.footer .footer-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* 20 · MOBILE OPTIMIZATION ────────────────────────────── */
@media (max-width: 900px) {
  .hf-float-card { display: none; }
  .hero { padding-top: 80px !important; padding-bottom: 60px !important; }
  .hero-inner { gap: 32px !important; }
}

@media (max-width: 768px) {
  /* Tipografia mobile */
  h1, .hero h1 { font-size: clamp(32px, 8vw, 42px) !important; line-height: 1.1 !important; }
  h2, .section-title, .platform-title { font-size: clamp(26px, 6vw, 34px) !important; line-height: 1.18 !important; }
  h3 { font-size: 19px !important; }
  p, .section-sub, .hero-sub { font-size: 16px !important; }
  .hero-h2 { font-size: 17px !important; }

  /* Paddings em todas seções */
  .pain-section, .benefits-section, .platform-section,
  .sectors-section, .integrations-section, .why-section,
  .testimonials-section, .faq-section, .cta-section,
  .hf-video-section { padding: 56px 18px !important; }
  .hero { padding: 80px 18px 40px !important; }
  .meta-partner-new { padding: 32px 20px !important; margin: 40px 16px !important; border-radius: var(--hf-r-2xl) !important; }

  /* Grids → 1 coluna */
  .pain-grid, .benefits-grid, .platform-grid,
  .cases-grid, .why-cards, .int-features-grid,
  .hero-inner {
    grid-template-columns: 1fr !important;
    display: grid !important;
    gap: 18px !important;
  }
  .hero-inner { display: flex !important; flex-direction: column !important; }

  /* Cards mobile */
  .pain-card, .benefit-card, .platform-card, .sector-card,
  .case-card, .feature-card, .ganho-card,
  .why-card, .int-feature-card {
    padding: 24px 20px !important;
    border-radius: var(--hf-r-lg) !important;
  }
  .case-card { padding: 0 !important; }

  /* Hero stats / proof empilhados */
  .hero-proof { flex-direction: column; gap: 12px !important; align-items: center; }
  .hero-proof-item { font-size: 14px; }
  .hero-tags { justify-content: center !important; }
  .hero-tag { font-size: 12px !important; padding: 5px 12px !important; }
  .hero-badge { font-size: 12px !important; padding: 6px 14px !important; }

  /* Hero visual */
  .hero-visual { padding: 0 8px; }
  .hero-screenshot { border-radius: var(--hf-r-lg) !important; }

  /* Botões mobile */
  .btn-primary, .cta-btn-hero, .navbar-cta, .btn-white, .btn-secondary {
    padding: 13px 22px !important;
    font-size: 14px !important;
    width: auto;
    max-width: 100%;
  }

  /* Vídeo */
  .hf-video-section { padding: 56px 16px !important; }
  .hf-video-head { margin-bottom: 36px; }
  .hf-video-frame { border-radius: var(--hf-r-xl) !important; }
  .hf-video-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; margin-top: 36px !important; }
  .hf-video-stat { padding: 18px 16px; }
  .hf-video-stat .num { font-size: 28px; }

  /* CTA form */
  .cta-section .form-box { padding: 24px 18px !important; }
  .cta-grid { gap: 32px !important; }

  /* Navbar mobile */
  .navbar { padding: 14px 18px !important; }
  .navbar-cta { padding: 10px 16px !important; font-size: 13px !important; }

  /* Sectors carousel arrows mobile */
  .sectors-nav { gap: 12px; }
  .sectors-arrow-btn { width: 40px; height: 40px; }

  /* Footer mobile */
  .footer { padding: 48px 18px 32px !important; }
  .footer-links { font-size: 13px; }

  /* Logos ticker */
  .logos-section { padding: 24px 0 40px !important; }
  .logo-item { height: 32px !important; }

  /* FAQ mobile */
  .faq-question { padding: 16px 18px !important; font-size: 15px !important; }
}

@media (max-width: 480px) {
  h1, .hero h1 { font-size: 30px !important; }
  h2, .section-title { font-size: 24px !important; }
  .hero-proof-item { font-size: 13px; }
  .hero-tag { padding: 4px 10px !important; }
  .meta-partner-new { padding: 24px 18px !important; }
}

/* 21 · WhatsApp FAB — não bloquear conteúdo no mobile ── */
@media (max-width: 600px) {
  .hfwa-fab { width: 54px !important; height: 54px !important; font-size: 26px !important; bottom: 16px !important; right: 16px !important; }
}

/* ════════════════════════════════════════════════════════════════
   v3.2 — LOGO ESCURA SEMPRE + MOCK-UP IPHONE TRANSPARENTE
═══════════════════════════════════════════════════════════════════ */

/* 22 · NAVBAR LOGO — sempre escura, nunca trocar para branca */
.navbar-logo {
  display: block !important;
  opacity: 1 !important;
  max-height: 34px !important;
  width: auto !important;
}
.navbar-logo-white {
  display: none !important;
}
.navbar.scrolled .navbar-logo {
  display: block !important;
  opacity: 1 !important;
}
.navbar.scrolled .navbar-logo-white {
  display: none !important;
}

/* 23 · HERO — 1 iPHONE ÚNICO COM CARTAS FLUTUANTES (Claude Design) */
.hero-phone-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 460 / 920;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone-single {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone-single::before {
  content: "";
  position: absolute;
  inset: 4% 8%;
  background: radial-gradient(ellipse at 50% 50%, rgba(104,91,199,.28), transparent 70%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
}
.hero-phone-stage .hero-phone-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent !important;
  display: block;
}

/* (Legacy — manter compatibilidade, mas não usar mais)
.hero-phones-board {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 8px;
  align-items: end;
}*/
.hero-phones-board { display: none !important; }
.hero-phone-card {
  position: relative;
  aspect-ratio: 420 / 900;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hfPhoneFloat 8s ease-in-out infinite;
}
.hero-phone-card:nth-child(1) { animation-delay: -0s; }
.hero-phone-card:nth-child(2) { animation-delay: -2s; transform: translateY(-12px); }
.hero-phone-card:nth-child(3) { animation-delay: -4s; transform: translateY(-24px); }
.hero-phone-card:nth-child(4) { animation-delay: -6s; transform: translateY(-12px); }
@keyframes hfPhoneFloat {
  0%, 100% { transform: translateY(var(--baseY, 0)); }
  50%      { transform: translateY(calc(var(--baseY, 0) - 8px)); }
}
.hero-phone-card:nth-child(2) { --baseY: -12px; }
.hero-phone-card:nth-child(3) { --baseY: -24px; }
.hero-phone-card:nth-child(4) { --baseY: -12px; }

.hero-phone-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent !important;
  display: block;
}

/* Tag flutuante em cima do iPhone */
.hero-phone-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--hf-purple), var(--hf-navy));
  color: #fff;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--hf-r-pill);
  box-shadow: 0 8px 20px -4px rgba(36,19,95,.4);
  z-index: 10;
  white-space: nowrap;
}

/* Glow roxo difuso atrás de cada iPhone */
.hero-phone-card::before {
  content: "";
  position: absolute;
  inset: 8% 0 8% 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(104,91,199,.20), transparent 70%);
  z-index: -1;
  filter: blur(20px);
  pointer-events: none;
}

/* Hero visual sem sombra/fundo */
.hero-visual { background: transparent !important; box-shadow: none !important; max-width: none !important; }
.hero-visual::before { display: none !important; }

/* Mobile: scroll horizontal com snap */
@media (max-width: 1100px) {
  .hero-phones-board {
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-phone-card {
    scroll-snap-align: center;
    --baseY: 0 !important;
    transform: none !important;
  }
  .hero-phones-board::-webkit-scrollbar { height: 6px; }
  .hero-phones-board::-webkit-scrollbar-track { background: transparent; }
  .hero-phones-board::-webkit-scrollbar-thumb { background: var(--hf-lavender); border-radius: 999px; }
}
@media (max-width: 768px) {
  .hero-phones-board { grid-template-columns: repeat(4, 260px); gap: 12px; padding-bottom: 20px; }
  .hero-phone-tag { font-size: 10px; padding: 5px 12px; top: -10px; }
}
@media (max-width: 480px) {
  .hero-phones-board { grid-template-columns: repeat(4, 240px); }
}

/* ════════════════════════════════════════════════════════════════
   v3.3 — CONTRASTE OBRIGATÓRIO (textos sempre legíveis)
═══════════════════════════════════════════════════════════════════ */

/* 24 · FUNDOS ESCUROS — textos sempre claros (alta legibilidade) */
.cta-section,
.sectors-section,
.footer,
.sectors-section *,
.cta-section *:not(.form-box):not(.form-box *):not(.hf-form *):not(.hfwa-box):not(.hfwa-box *),
.footer * {
  /* fallback default white */
}

.cta-section h1, .cta-section h2, .cta-section h3, .cta-section h4, .cta-section h5,
.cta-section .section-title, .cta-section .platform-title,
.sectors-section h1, .sectors-section h2, .sectors-section h3, .sectors-section h4, .sectors-section h5,
.sectors-section .section-title,
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5 {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.10);
}

.cta-section p, .cta-section li, .cta-section span:not(.hf-grad-text),
.cta-section .section-sub, .cta-section .cta-copy p,
.cta-section .cta-copy .section-sub,
.sectors-section p, .sectors-section li, .sectors-section span,
.sectors-section .section-sub,
.footer p, .footer span, .footer li, .footer a {
  color: rgba(255, 255, 255, 0.92) !important;
}

.cta-section .section-label,
.sectors-section .section-label,
.footer .section-label {
  color: var(--hf-lavender) !important;
}

/* dentro do form-box (branco), texto volta a ser escuro */
.cta-section .form-box,
.cta-section .form-box p,
.cta-section .form-box span,
.cta-section .form-box label,
.cta-section .form-box li,
.cta-section .form-box h1,
.cta-section .form-box h2,
.cta-section .form-box h3 {
  color: var(--hf-slate-900) !important;
  text-shadow: none !important;
}
.cta-section .form-box .hf-label { color: var(--hf-slate-700) !important; }
.cta-section .form-box .hf-input,
.cta-section .form-box .hf-input::placeholder {
  color: var(--hf-slate-900);
}
.cta-section .form-box .hf-input::placeholder { color: var(--hf-slate-400); }
.cta-section .form-box .hf-radio { color: var(--hf-slate-700) !important; }

/* dentro de sector-card branco no fundo escuro */
.sectors-section .sector-card,
.sectors-section .sector-card *,
.sectors-section .sector-card h3,
.sectors-section .sector-card p,
.sectors-section .sector-card span {
  color: var(--hf-slate-900) !important;
  text-shadow: none !important;
}
.sectors-section .sector-card h3 { color: var(--hf-navy) !important; }
.sectors-section .sector-card p { color: var(--hf-slate-600) !important; }
.sectors-section .sector-card .sector-link,
.sectors-section .sector-card .sector-link * { color: var(--hf-purple) !important; }

/* WhatsApp FAB modal — texto escuro sobre fundo branco */
.hfwa-box, .hfwa-box * {
  color: var(--hf-slate-900);
}
.hfwa-box .hfwa-sub { color: var(--hf-slate-600); }

/* 25 · FUNDOS CLAROS — textos sempre escuros */
.hero, .hero *,
.pain-section, .pain-section *,
.benefits-section, .benefits-section *,
.platform-section, .platform-section *,
.integrations-section, .integrations-section *,
.why-section, .why-section *,
.testimonials-section, .testimonials-section *,
.faq-section, .faq-section *,
.hf-video-section, .hf-video-section *,
.meta-partner-new, .meta-partner-new * {
  /* mantém herança normal */
}

.hero h1, .hero h2, .hero h3,
.pain-section h1, .pain-section h2, .pain-section h3,
.benefits-section h1, .benefits-section h2, .benefits-section h3,
.platform-section h1, .platform-section h2, .platform-section h3,
.platform-title,
.integrations-section h1, .integrations-section h2, .integrations-section h3,
.why-section h1, .why-section h2, .why-section h3,
.testimonials-section h1, .testimonials-section h2, .testimonials-section h3,
.faq-section h1, .faq-section h2, .faq-section h3,
.hf-video-section h1, .hf-video-section h2, .hf-video-section h3,
.meta-partner-new h1, .meta-partner-new h2, .meta-partner-new h3 {
  color: var(--hf-navy) !important;
}

.hero p, .hero .hero-sub, .hero .hero-h2,
.pain-section p, .pain-section li,
.benefits-section p, .benefits-section li,
.platform-section p, .platform-section li,
.integrations-section p, .integrations-section li,
.why-section p, .why-section li,
.testimonials-section p, .testimonials-section li,
.faq-section p, .faq-section li,
.hf-video-section p, .hf-video-section li,
.meta-partner-new p, .meta-partner-new li {
  color: var(--hf-slate-700) !important;
}

.hero .section-sub, .hero .hero-sub,
.pain-section .section-sub, .benefits-section .section-sub,
.platform-section .section-sub, .integrations-section .section-sub,
.why-section .section-sub, .testimonials-section .section-sub,
.faq-section .section-sub, .hf-video-section .section-sub,
.meta-partner-new .meta-partner-sub {
  color: var(--hf-slate-600) !important;
}

/* gradient text — não pode ser sobreposto */
.hf-grad-text, .hero h1 em, .platform-title b, .section-title em {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background: var(--hf-grad-text) !important;
  -webkit-background-clip: text !important;
          background-clip: text !important;
}

/* Eyebrows roxas em fundos claros */
.hero .section-label,
.pain-section .section-label,
.benefits-section .section-label,
.platform-section .section-label, .platform-subtitle,
.integrations-section .section-label,
.why-section .section-label,
.testimonials-section .section-label,
.faq-section .section-label,
.hf-video-section .section-label,
.meta-partner-new .section-label {
  color: var(--hf-purple) !important;
}

/* Cards — texto sempre escuro independente do fundo da seção */
.pain-card, .pain-card *,
.benefit-card, .benefit-card *,
.platform-card, .platform-card *,
.case-card, .case-card *,
.feature-card, .feature-card *,
.why-card, .why-card *,
.ganho-card, .ganho-card *,
.int-feature-card, .int-feature-card * {
  color: var(--hf-slate-700);
}
.pain-card h3, .benefit-card h3, .platform-card h3,
.case-card h3, .feature-card h3, .why-card h3,
.ganho-card h3, .ganho-card h4 {
  color: var(--hf-navy) !important;
}
.pain-card p, .benefit-card p, .platform-card p,
.case-card p, .feature-card p, .why-card p,
.ganho-card p {
  color: var(--hf-slate-600) !important;
}

/* Sector cards — sempre fundo branco com texto escuro mesmo na seção escura */
.sector-card { background: var(--hf-white) !important; }
.sector-card h3 { color: var(--hf-navy) !important; }
.sector-card p { color: var(--hf-slate-600) !important; }
.sector-card .sector-icon { color: #fff !important; }
.sector-card .sector-link { color: var(--hf-purple) !important; }

/* Links em fundo escuro → claros */
.cta-section a, .sectors-section a, .footer a {
  color: #fff !important;
}
.cta-section a:hover, .sectors-section a:hover, .footer a:hover {
  color: var(--hf-lavender) !important;
}
/* exceto botões e links em fundo branco interno */
.cta-section .form-box a,
.cta-section .form-box a:hover {
  color: var(--hf-purple) !important;
}

/* Botões sólidos brancos em fundo escuro */
.cta-section .btn-white,
.sectors-section .btn-white {
  background: #ffffff !important;
  color: var(--hf-navy) !important;
  border-color: #ffffff !important;
}
.cta-section .btn-white:hover,
.sectors-section .btn-white:hover {
  background: var(--hf-lavender-soft) !important;
  color: var(--hf-navy) !important;
}

/* Seals em fundo escuro */
.cta-section .seal,
.sectors-section .seal,
.footer .footer-badge {
  background: rgba(255,255,255,.10) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.22) !important;
}

/* hf-video-stat números mantêm gradient */
.hf-video-stat .num {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background: var(--hf-grad-text) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}
.hf-video-stat .label { color: var(--hf-slate-600) !important; }

/* ════════════════════════════════════════════════════════════════
   v3.4 — Mock-up único + ícones brancos + form ajustado
═══════════════════════════════════════════════════════════════════ */

/* 26 · CARTAS FLUTUANTES — fundos coloridos + ÍCONES BRANCOS */
.hero-phone-stage .hf-float-card {
  position: absolute;
  background: var(--hf-white);
  border: 1px solid var(--hf-slate-200);
  border-radius: var(--hf-r-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--hf-sh-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--hf-navy);
  z-index: 3;
  animation: hfBobble 6s ease-in-out infinite;
  max-width: 240px;
}

/* Posicionamento ao redor do iPhone (overlay direto) */
.hero-phone-stage .hf-float-card.top-left   { top: 4%;   left: -16%;  animation-delay: -1s; }
.hero-phone-stage .hf-float-card.top-right  { top: 12%;  right: -14%; animation-delay: -2.5s; }
.hero-phone-stage .hf-float-card.mid-left   { top: 50%;  left: -22%;  animation-delay: -1.5s; }
.hero-phone-stage .hf-float-card.bot-right  { bottom: 10%; right: -18%; animation-delay: -3s; }

.hero-phone-stage .hf-float-card .icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  color: #ffffff !important;
}
.hero-phone-stage .hf-float-card .icon i { color: #ffffff !important; }

.hero-phone-stage .hf-float-card .icon-wa   { background: #25D366 !important; }
.hero-phone-stage .hf-float-card .icon-ai   { background: linear-gradient(135deg, #685bc7, #24135f) !important; }
.hero-phone-stage .hf-float-card .icon-meta { background: #1877F2 !important; }
.hero-phone-stage .hf-float-card .icon-stat { background: #16a34a !important; }

.hero-phone-stage .hf-float-card small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--hf-slate-500);
  margin-top: 2px;
}

/* Mobile: cartas flutuantes recuam para dentro / desaparecem */
@media (max-width: 1100px) {
  .hero-phone-stage { max-width: 460px; }
  .hero-phone-stage .hf-float-card.top-left   { left: -4%; }
  .hero-phone-stage .hf-float-card.top-right  { right: -2%; }
  .hero-phone-stage .hf-float-card.mid-left   { left: -10%; }
  .hero-phone-stage .hf-float-card.bot-right  { right: -6%; }
}
@media (max-width: 768px) {
  .hero-phone-stage { max-width: 360px; }
  .hero-phone-stage .hf-float-card { max-width: 180px; padding: 10px 12px; font-size: 12px; }
  .hero-phone-stage .hf-float-card .icon { width: 32px; height: 32px; font-size: 14px; }
  .hero-phone-stage .hf-float-card small { font-size: 10px; }
  .hero-phone-stage .hf-float-card.top-left   { left: -8%; top: 2%; }
  .hero-phone-stage .hf-float-card.top-right  { right: -6%; top: 10%; }
  .hero-phone-stage .hf-float-card.mid-left   { left: -12%; top: 52%; }
  .hero-phone-stage .hf-float-card.bot-right  { right: -8%; bottom: 4%; }
}
@media (max-width: 480px) {
  .hero-phone-stage { max-width: 300px; }
  .hero-phone-stage .hf-float-card { display: none; }
}

/* 27 · TÍTULO DO FORMULÁRIO */
.form-box .form-title {
  font-family: "Schibsted Grotesk", system-ui, sans-serif !important;
  color: var(--hf-navy) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 22px 0;
  text-align: left !important;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hf-slate-100);
}

/* 28 · FORM — labels left-aligned + botão com texto branco */
.cta-section .form-box,
.form-box {
  text-align: left !important;
}
.form-box .hf-form {
  text-align: left !important;
  max-width: none !important;
}
.form-box .hf-form .hf-row,
.form-box .hf-form .hf-label,
.form-box .hf-form .hf-input,
.form-box .hf-form .hf-radio,
.form-box .hf-form .hf-progress,
.form-box .hf-form .hf-pl {
  text-align: left !important;
}
.form-box .hf-label { color: var(--hf-slate-700) !important; }
.form-box .hf-radio { color: var(--hf-slate-700) !important; }

/* Botão do form: fundo gradient + TEXTO BRANCO sempre */
.form-box .hf-btn,
.form-box button.hf-btn,
.cta-section .form-box .hf-btn,
.cta-section .form-box button.hf-btn {
  background: var(--hf-grad-brand) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-radius: var(--hf-r-pill) !important;
  padding: 13px 24px !important;
  box-shadow: var(--hf-sh-purple) !important;
  text-align: center !important;
}
.form-box .hf-btn:hover,
.form-box button.hf-btn:hover { filter: brightness(1.06); }

/* Botão "Voltar" / secundário */
.form-box .hf-btn-sec,
.cta-section .form-box .hf-btn-sec {
  background: var(--hf-white) !important;
  color: var(--hf-purple) !important;
  border: 1px solid var(--hf-slate-200) !important;
}

/* 29 · STATS DO VÍDEO — 3 colunas agora (sem mais a 4ª) */
.hf-video-stats { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 768px) {
  .hf-video-stats { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; }
  .hf-video-stat { padding: 16px 12px; }
  .hf-video-stat .num { font-size: 24px; }
  .hf-video-stat .label { font-size: 12px; }
}
@media (max-width: 480px) {
  .hf-video-stats { grid-template-columns: 1fr !important; }
}

/* ════════════════════════════════════════════════════════════════
   v3.5 — Hero 2-colunas (desktop) + mobile centralizado + mock-up
═══════════════════════════════════════════════════════════════════ */

/* 30 · HERO INNER — 2 colunas no desktop, 1 col no mobile */
.hero { padding-top: 100px !important; padding-bottom: 80px !important; }

.hero-inner {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 64px !important;
  align-items: center !important;
  max-width: 1280px;
  margin: 0 auto !important;
  flex-direction: row !important;
}

/* Texto à esquerda, mock-up à direita */
.hero-copy {
  text-align: left !important;
  align-items: flex-start !important;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  margin: 0 !important;
}
.hero-copy .hero-badge,
.hero-copy .hero-tags,
.hero-copy .hero-ctas {
  justify-content: flex-start !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.hero-copy .hero-sub,
.hero-copy .hero-h2,
.hero-copy h1 {
  text-align: left !important;
  margin-left: 0 !important;
}

/* Visual à direita */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* Hero proof centralizado abaixo, ocupa as 2 colunas */
.hero-proof {
  grid-column: 1 / -1;
  justify-content: center !important;
  margin-top: 56px !important;
}

/* 31 · MOCK-UP — dimensões certas para iPhone do Claude Design */
.hero-phone-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 460 / 920;
  margin: 0 auto;
  display: block;
}
.hero-phone-single {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.hero-phone-single::before {
  content: "";
  position: absolute;
  inset: 4% 8%;
  background: radial-gradient(ellipse at 50% 50%, rgba(104,91,199,.30), transparent 70%);
  filter: blur(36px);
  z-index: -1;
  pointer-events: none;
}
.hero-phone-iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  background: transparent !important;
  display: block;
  /* Iframe content: dc-card 460x920 com iPhone 402x874 dentro */
}

/* 32 · MOBILE — coluna única, mock-up centralizado */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }
  .hero-copy {
    align-items: center !important;
    text-align: center !important;
    max-width: 720px;
    margin: 0 auto !important;
  }
  .hero-copy .hero-badge,
  .hero-copy .hero-tags,
  .hero-copy .hero-ctas {
    justify-content: center !important;
  }
  .hero-copy h1,
  .hero-copy .hero-sub,
  .hero-copy .hero-h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-visual {
    min-height: auto;
    margin: 0 auto !important;
  }
  .hero-phone-stage { max-width: 420px; }
}

@media (max-width: 768px) {
  .hero { padding-top: 80px !important; padding-bottom: 48px !important; }
  .hero-inner { gap: 36px !important; }
  .hero-phone-stage { max-width: 360px; }
}

@media (max-width: 480px) {
  .hero-phone-stage { max-width: 300px; }
}

/* 33 · Garantir hero-copy esquerda no desktop sobrescrevendo v3.1 */
@media (min-width: 1025px) {
  .hero-inner .hero-copy { text-align: left !important; align-items: flex-start !important; }
  .hero-inner .hero-copy * { text-align: left !important; }
  .hero-inner .hero-copy .hero-badge,
  .hero-inner .hero-copy .hero-tags,
  .hero-inner .hero-copy .hero-ctas { justify-content: flex-start !important; }
}

/* ════════════════════════════════════════════════════════════════
   v3.6 — iPhone WhatsApp INLINE (sem iframe, garantido renderizar)
═══════════════════════════════════════════════════════════════════ */

/* 34 · iPhone shell */
.hf-iphone {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 380 / 780;
  margin: 0 auto;
  background: #000;
  border-radius: 48px;
  box-shadow:
    0 40px 80px rgba(36,19,95,0.25),
    0 0 0 1px rgba(0,0,0,0.18),
    inset 0 0 0 3px #1a1a1a;
  overflow: hidden;
  z-index: 2;
  isolation: isolate;
}
.hero-phone-stage { aspect-ratio: 380 / 780; max-width: 380px; }

.hf-iphone-island {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 32px;
  background: #000;
  border-radius: 20px;
  z-index: 50;
}

.hf-iphone-statusbar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px 8px;
  background: transparent;
  color: #000;
  font-family: -apple-system, "SF Pro", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.hf-iphone-statusbar .hf-iphone-time { padding-left: 6px; }
.hf-iphone-statusbar .hf-iphone-icons { display: flex; gap: 6px; font-size: 12px; padding-right: 6px; color: #000; }

.hf-iphone-home {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 4px;
  background: rgba(0,0,0,.35);
  border-radius: 4px;
  z-index: 60;
}

/* 35 · WhatsApp content */
.hf-wa {
  position: absolute;
  inset: 50px 0 24px 0;
  background: #E5DDD5;
  background-image:
    radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 5;
}

.hf-wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #075E54;
  color: #fff;
  font-family: -apple-system, system-ui, sans-serif;
  flex-shrink: 0;
}
.hf-wa-back { font-size: 14px; color: #fff; }
.hf-wa-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #685bc7, #24135f);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
  font-family: "Schibsted Grotesk", sans-serif;
}
.hf-wa-meta { flex: 1; min-width: 0; }
.hf-wa-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.15;
}
.hf-wa-verified { color: #1da1f2; font-size: 13px; }
.hf-wa-status {
  font-size: 12px;
  color: rgba(255,255,255,.78);
  margin-top: 1px;
  line-height: 1;
}
.hf-wa-action { font-size: 14px; color: #fff; margin-left: 4px; opacity: .9; }

.hf-wa-body {
  flex: 1;
  overflow: hidden;
  padding: 12px 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.hf-wa-date {
  align-self: center;
  background: #DBEEFF;
  color: #1F2937;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 12px;
  margin: 4px 0 6px;
  font-family: -apple-system, system-ui, sans-serif;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
}

.hf-wa-bubble {
  max-width: 78%;
  padding: 7px 11px 6px;
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.35;
  font-family: -apple-system, system-ui, sans-serif;
  color: #1F2937;
  position: relative;
  box-shadow: 0 1px 0.5px rgba(11,20,26,0.13);
  opacity: 0;
  transform: translateY(8px);
  word-wrap: break-word;
}

.hf-wa-bubble.user {
  align-self: flex-end;
  background: #DCF8C6;
  border-top-right-radius: 0;
}
.hf-wa-bubble.bot {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 0;
}

.hf-wa-bubble .hf-wa-time {
  display: block;
  font-size: 10px;
  color: rgba(0,0,0,.45);
  margin-top: 3px;
  text-align: right;
  white-space: nowrap;
}
.hf-wa-bubble .hf-wa-time .fa-check-double { color: #4FC3F7; margin-left: 3px; font-size: 10px; }

.hf-wa-bubble.typing {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 0;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: auto;
}
.hf-wa-bubble.typing span {
  width: 6px; height: 6px;
  background: #9aa0a6;
  border-radius: 50%;
  animation: hfDot 1.2s ease-in-out infinite;
}
.hf-wa-bubble.typing span:nth-child(2) { animation-delay: .2s; }
.hf-wa-bubble.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes hfDot {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50%      { transform: translateY(-4px); opacity: 1; }
}

/* Quick reply chips */
.hf-wa-chips {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 6px;
}
.hf-wa-chip {
  border: 1px solid rgba(108,91,199,0.35);
  background: #faf9ff;
  color: #5a3aa8;
  font-weight: 500;
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 18px;
  text-align: center;
}

/* Input bar */
.hf-wa-input {
  flex-shrink: 0;
  background: #ECE5DD;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, system-ui, sans-serif;
}
.hf-wa-input i { color: #54656f; font-size: 14px; padding: 6px; }
.hf-wa-input span {
  flex: 1;
  background: #fff;
  color: #54656f;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

/* 36 · Animação sequencial — loop infinito 14s, keyframes próprios por bolha */
.hf-wa-bubble.b1 { animation: hfWaB1 14s linear infinite; }
.hf-wa-bubble.t1 { animation: hfWaT1 14s linear infinite; }
.hf-wa-bubble.b2 { animation: hfWaB2 14s linear infinite; }
.hf-wa-bubble.b3 { animation: hfWaB3 14s linear infinite; }
.hf-wa-bubble.b4 { animation: hfWaB4 14s linear infinite; }
.hf-wa-bubble.t2 { animation: hfWaT2 14s linear infinite; }
.hf-wa-bubble.b5 { animation: hfWaB5 14s linear infinite; }

@keyframes hfWaB1 {  /* aparece 0.8s · fica até 13.8s */
  0%, 5.7%    { opacity: 0; transform: translateY(8px); }
  8.6%, 97%   { opacity: 1; transform: translateY(0); }
  100%        { opacity: 0; transform: translateY(-8px); }
}
@keyframes hfWaT1 {  /* typing: 2.2s → 3.4s */
  0%, 15.7%   { opacity: 0; transform: translateY(8px); }
  17.9%, 22%  { opacity: 1; transform: translateY(0); }
  24.3%, 100% { opacity: 0; transform: translateY(0); }
}
@keyframes hfWaB2 {  /* aparece 3.4s · fica até 13.8s */
  0%, 24.3%   { opacity: 0; transform: translateY(8px); }
  27.1%, 97%  { opacity: 1; transform: translateY(0); }
  100%        { opacity: 0; transform: translateY(-8px); }
}
@keyframes hfWaB3 {  /* aparece 5.0s */
  0%, 35.7%   { opacity: 0; transform: translateY(8px); }
  38.6%, 97%  { opacity: 1; transform: translateY(0); }
  100%        { opacity: 0; transform: translateY(-8px); }
}
@keyframes hfWaB4 {  /* aparece 6.6s */
  0%, 47.1%   { opacity: 0; transform: translateY(8px); }
  50%, 97%    { opacity: 1; transform: translateY(0); }
  100%        { opacity: 0; transform: translateY(-8px); }
}
@keyframes hfWaT2 {  /* typing 7.6s → 8.8s */
  0%, 54.3%   { opacity: 0; transform: translateY(8px); }
  56.4%, 60%  { opacity: 1; transform: translateY(0); }
  62.9%, 100% { opacity: 0; transform: translateY(0); }
}
@keyframes hfWaB5 {  /* aparece 8.8s */
  0%, 62.9%   { opacity: 0; transform: translateY(8px); }
  65.7%, 97%  { opacity: 1; transform: translateY(0); }
  100%        { opacity: 0; transform: translateY(-8px); }
}

/* 37 · Esconde iframe legado e reseta hero-phone-iframe */
.hero-phone-iframe { display: none !important; }

/* Mobile responsivo do iPhone inline */
@media (max-width: 768px) {
  .hf-iphone { max-width: 320px; }
  .hf-wa-bubble { font-size: 13px; }
}
@media (max-width: 480px) {
  .hf-iphone { max-width: 280px; }
  .hero-phone-stage { max-width: 280px; }
}

/* ════════════════════════════════════════════════════════════════
   v3.7 — Cartas flutuantes fora do iPhone (sem cobrir o chat)
═══════════════════════════════════════════════════════════════════ */

/* Container fica mais largo que o iPhone para dar espaço lateral às cartas */
.hero-phone-stage {
  position: relative;
  width: 100%;
  max-width: 640px !important;
  aspect-ratio: 640 / 780 !important;
  margin: 0 auto;
  display: block;
}

/* iPhone fica centralizado dentro do stage, na largura natural */
.hf-iphone {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  height: 100%;
}

/* hero-phone-single: container que segura o iPhone no centro */
.hero-phone-single {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Cartas — menores e nas BORDAS do stage (não do iPhone) */
.hero-phone-stage .hf-float-card {
  max-width: 200px;
  padding: 12px 14px;
  font-size: 12.5px;
}
.hero-phone-stage .hf-float-card small { font-size: 10.5px; }
.hero-phone-stage .hf-float-card .icon { width: 34px; height: 34px; font-size: 15px; }

/* Reposicionamento: fica nas extremidades do stage */
.hero-phone-stage .hf-float-card.top-left   { top: 4%;    left: 0;       right: auto; animation-delay: -1s; }
.hero-phone-stage .hf-float-card.top-right  { top: 14%;   right: 0;      left: auto;  animation-delay: -2.5s; }
.hero-phone-stage .hf-float-card.mid-left   { top: 50%;   left: 0;       right: auto; animation-delay: -1.5s; transform: translateY(-50%); }
.hero-phone-stage .hf-float-card.bot-right  { bottom: 8%; right: 0;      left: auto;  animation-delay: -3s; }

/* O bobble da carta mid-left não pode quebrar o translateY -50% */
@keyframes hfBobbleMid {
  0%, 100% { transform: translateY(-50%); }
  50%      { transform: translateY(calc(-50% - 8px)); }
}
.hero-phone-stage .hf-float-card.mid-left { animation-name: hfBobbleMid; }

/* Tablet: container menor, cartas semelhantes */
@media (max-width: 1024px) {
  .hero-phone-stage { max-width: 560px !important; aspect-ratio: 560/780 !important; }
  .hf-iphone { max-width: 320px; }
}

/* Mobile: empilhar com iPhone — cartas vão para as bordas do stage menor */
@media (max-width: 768px) {
  .hero-phone-stage { max-width: 420px !important; aspect-ratio: 420/780 !important; }
  .hf-iphone { max-width: 300px; }
  .hero-phone-stage .hf-float-card { max-width: 150px; font-size: 11px; padding: 9px 11px; }
  .hero-phone-stage .hf-float-card small { font-size: 9.5px; }
  .hero-phone-stage .hf-float-card .icon { width: 28px; height: 28px; font-size: 12px; }
  .hero-phone-stage .hf-float-card.top-left   { top: 2%; }
  .hero-phone-stage .hf-float-card.top-right  { top: 12%; }
  .hero-phone-stage .hf-float-card.bot-right  { bottom: 4%; }
}

/* Mobile muito pequeno: 1 cartão (top-left e bot-right) só, esconde os do meio */
@media (max-width: 480px) {
  .hero-phone-stage { max-width: 340px !important; aspect-ratio: 340/780 !important; }
  .hf-iphone { max-width: 260px; }
  .hero-phone-stage .hf-float-card.mid-left,
  .hero-phone-stage .hf-float-card.top-right { display: none !important; }
  .hero-phone-stage .hf-float-card { max-width: 140px; }
}

/* ════════════════════════════════════════════════════════════════
   v3.8 — Mock-up GIF (mesmo do cobra.html) com cartas flutuantes
═══════════════════════════════════════════════════════════════════ */

/* Aspect-ratio do stage ajustado para o GIF (mais quadrado) */
.hero-phone-stage {
  aspect-ratio: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  max-width: 720px !important;
}

/* GIF: centralizado no meio do stage, com largura limitada para deixar espaço lateral */
.hero-phone-stage .hero-mockup-gif {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--hf-r-2xl);
  background: transparent;
  box-shadow: none;
  border: none;
  position: relative;
  z-index: 2;
}

/* Esconder o iPhone inline antigo (se ainda houver markup) */
.hf-iphone { display: none !important; }

/* Reajustar cartas flutuantes para acompanhar o GIF central */
.hero-phone-stage .hf-float-card.top-left   { top: -2%;   left: 0;       right: auto; }
.hero-phone-stage .hf-float-card.top-right  { top: 16%;   right: 0;      left: auto; }
.hero-phone-stage .hf-float-card.mid-left   { top: 52%;   left: 0;       right: auto; transform: translateY(-50%); }
.hero-phone-stage .hf-float-card.bot-right  { bottom: 2%; right: 0;      left: auto; }

/* Glow embaixo do GIF */
.hero-phone-stage::before {
  content: "";
  position: absolute;
  inset: 10% 10% 10% 10%;
  background: radial-gradient(ellipse at 50% 50%, rgba(104,91,199,.20), transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

/* Responsivo */
@media (max-width: 1024px) {
  .hero-phone-stage { max-width: 620px !important; }
  .hero-phone-stage .hero-mockup-gif { max-width: 420px; }
}
@media (max-width: 768px) {
  .hero-phone-stage { max-width: 100% !important; padding: 0 8px; }
  .hero-phone-stage .hero-mockup-gif { max-width: 360px; }
  .hero-phone-stage .hf-float-card { max-width: 150px; }
}
@media (max-width: 480px) {
  .hero-phone-stage .hero-mockup-gif { max-width: 100%; }
  .hero-phone-stage .hf-float-card.mid-left,
  .hero-phone-stage .hf-float-card.top-right { display: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   v3.9 — Ajustes finais (cartas, CTA, plataforma, sectors)
═══════════════════════════════════════════════════════════════════ */

/* 38 · CARTAS — todas empilhadas na DIREITA do mock-up, centralizadas */
.hero-phone-stage .hf-float-card.stack-right {
  position: absolute;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  max-width: 200px;
  background: var(--hf-white);
  border: 1px solid var(--hf-slate-200);
  border-radius: var(--hf-r-lg);
  box-shadow: var(--hf-sh-lg);
  font-weight: 600;
  color: var(--hf-navy);
  font-size: 13px;
  animation: hfBobble 6s ease-in-out infinite;
  z-index: 3;
}
.hero-phone-stage .hf-float-card.stack-right.s1 { top: 8%;  animation-delay: -1s; }
.hero-phone-stage .hf-float-card.stack-right.s2 { top: 42%; animation-delay: -2.5s; }
.hero-phone-stage .hf-float-card.stack-right.s3 { top: 76%; animation-delay: -4s; }

/* Conteúdo das cartas — centralizado vertical e horizontalmente */
.hero-phone-stage .hf-float-card.stack-right .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: #ffffff !important;
  flex-shrink: 0;
}
.hero-phone-stage .hf-float-card.stack-right .icon i { color: #ffffff !important; }
.hero-phone-stage .hf-float-card.stack-right .hf-float-text {
  text-align: center;
  line-height: 1.3;
}
.hero-phone-stage .hf-float-card.stack-right small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--hf-slate-500);
  margin-top: 4px;
  text-align: center;
}

/* Esconder cartas antigas que não estejam usando .stack-right */
.hero-phone-stage .hf-float-card:not(.stack-right) { display: none !important; }

@media (max-width: 1024px) {
  .hero-phone-stage .hf-float-card.stack-right { max-width: 170px; padding: 12px 14px; }
}
@media (max-width: 768px) {
  .hero-phone-stage .hf-float-card.stack-right { max-width: 140px; font-size: 11px; padding: 10px 12px; }
  .hero-phone-stage .hf-float-card.stack-right .icon { width: 32px; height: 32px; font-size: 13px; }
  .hero-phone-stage .hf-float-card.stack-right small { font-size: 10px; }
}
@media (max-width: 480px) {
  /* Mobile: só 1 carta (a s1 no topo) para não atrapalhar */
  .hero-phone-stage .hf-float-card.stack-right.s2,
  .hero-phone-stage .hf-float-card.stack-right.s3 { display: none !important; }
}

/* 39 · LOGOS LABEL — centralizar texto "Empresas que confiam na Hyperflow" */
.logos-section { text-align: center !important; }
.logos-label { text-align: center !important; display: block !important; margin: 0 auto 20px !important; }

/* 40 · CTA INVERTIDO no desktop: TEXTO ESQUERDA + FORM DIREITA */
@media (min-width: 1025px) {
  .cta-section .cta-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas: "left right" !important;
    gap: 64px !important;
    align-items: center !important;
    text-align: left !important;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cta-section .cta-copy-top {
    grid-area: left !important;
    text-align: left !important;
    max-width: 540px;
    align-self: center !important;
  }
  .cta-section .cta-copy-top * { text-align: left !important; }
  .cta-section .cta-copy-bottom {
    grid-area: left !important;
    text-align: left !important;
    align-self: start;
    grid-row: 2;
  }
  .cta-section .cta-copy-bottom .cta-list { text-align: left !important; margin: 0 !important; }
  .cta-section .cta-copy-bottom .cta-seals { justify-content: flex-start !important; }
  .cta-section .form-box {
    grid-area: right !important;
    grid-row: 1 / span 2 !important;
    align-self: center !important;
    margin: 0 !important;
    max-width: 560px;
    width: 100%;
    justify-self: end;
  }
}

/* 41 · META PARTNER — sem foto da mulher, layout em coluna centralizada */
.meta-partner-img-wrap, .meta-partner-img { display: none !important; }
.meta-partner-new .meta-partner-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 32px !important;
  max-width: 920px;
  margin: 0 auto;
}
.meta-partner-new .meta-partner-text { max-width: 720px; }

/* Selos: 5 cards em linha, todos do mesmo tamanho */
.meta-partner-new .hf-seals-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 14px !important;
  width: 100%;
  margin-top: 32px !important;
  align-items: stretch;
}
.meta-partner-new .hf-seal-card {
  background: rgba(255,255,255,0.7) !important;
  border: 1px solid var(--hf-slate-200) !important;
  border-radius: var(--hf-r-lg) !important;
  padding: 16px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  box-shadow: var(--hf-sh-xs);
}
.meta-partner-new .hf-seal-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block;
  max-height: 100px;
}
@media (max-width: 768px) {
  .meta-partner-new .hf-seals-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 480px) {
  .meta-partner-new .hf-seals-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* 42 · SECTORS — ícones brancos centralizados em quadrado roxo */
.sectors-section .sector-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 32px 24px !important;
}
.sectors-section .sector-card .sector-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 64px !important; height: 64px !important;
  border-radius: var(--hf-r-md) !important;
  background: linear-gradient(135deg, var(--hf-purple), var(--hf-navy)) !important;
  color: #ffffff !important;
  font-size: 26px !important;
  margin: 0 auto 18px auto !important;
}
.sectors-section .sector-card .sector-icon i,
.sectors-section .sector-card .sector-icon svg,
.sectors-section .sector-card .sector-icon * {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* ════════════════════════════════════════════════════════════════
   v4.0 — Plataforma com tabs em linha + imagem abaixo
═══════════════════════════════════════════════════════════════════ */

/* 43 · TABS em linha no topo */
.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px auto 36px;
  max-width: 1200px;
}
.platform-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: var(--hf-r-pill);
  border: 1px solid var(--hf-slate-200);
  background: var(--hf-white);
  color: var(--hf-navy);
  font-family: "Schibsted Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 220ms var(--hf-ease);
  letter-spacing: -0.005em;
}
.platform-tab i { color: var(--hf-purple); font-size: 16px; }
.platform-tab:hover {
  border-color: var(--hf-lavender);
  background: var(--hf-lavender-soft);
  transform: translateY(-1px);
  box-shadow: var(--hf-sh-sm);
}
.platform-tab.active {
  background: var(--hf-grad-brand) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: var(--hf-sh-purple);
}
.platform-tab.active i { color: #ffffff !important; }

/* Display da imagem + descrição */
.platform-display {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.platform-display-desc {
  font-size: 17px;
  color: var(--hf-slate-600);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 32px !important;
  text-align: center !important;
}
.platform-display-image {
  background: var(--hf-lavender-soft);
  border-radius: var(--hf-r-2xl);
  padding: 24px;
  box-shadow: var(--hf-sh-xl);
  border: 1px solid var(--hf-lavender);
}
.platform-display-image img {
  width: 100%;
  height: auto;
  border-radius: var(--hf-r-lg);
  display: block;
  transition: opacity 200ms var(--hf-ease);
}
.platform-display-image img.fading { opacity: 0; }

/* Esconde o accordion antigo */
.platform-layout, .platform-accordion, .platform-img-panel { display: none !important; }

@media (max-width: 768px) {
  .platform-tabs { gap: 8px; }
  .platform-tab { font-size: 12.5px; padding: 10px 14px; gap: 6px; }
  .platform-tab i { font-size: 13px; }
  .platform-display-image { padding: 16px; }
}

/* ════════════════════════════════════════════════════════════════
   v4.1 — CTA "Fale com um especialista" sem sobreposição
═══════════════════════════════════════════════════════════════════ */

/* Reset das regras anteriores que estavam sobrepondo */
.cta-section .cta-grid {
  display: grid !important;
  gap: 32px !important;
  align-items: start !important;
  text-align: left !important;
  max-width: 1200px;
  margin: 0 auto;
}

/* DESKTOP (≥1025px): texto à esquerda em 2 linhas + form à direita ocupando as 2 linhas */
@media (min-width: 1025px) {
  .cta-section .cta-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    grid-template-areas:
      "top    form"
      "bottom form" !important;
    gap: 48px 56px !important;
    align-items: start !important;
  }
  .cta-section .cta-copy-top    { grid-area: top    !important; align-self: end;    max-width: 540px; }
  .cta-section .cta-copy-bottom { grid-area: bottom !important; align-self: start;  max-width: 540px; margin: 0 !important; }
  .cta-section .form-box        { grid-area: form   !important; align-self: center; justify-self: end; width: 100%; max-width: 540px; margin: 0 !important; }

  /* todos os textos esquerdos alinhados à esquerda */
  .cta-section .cta-copy-top *,
  .cta-section .cta-copy-bottom * { text-align: left !important; }
  .cta-section .cta-copy-bottom .cta-list { margin: 0 !important; padding: 0 !important; }
  .cta-section .cta-copy-bottom .cta-list li { text-align: left !important; }
  .cta-section .cta-copy-bottom .cta-seals { justify-content: flex-start !important; margin-top: 24px; }
}

/* TABLET / MOBILE (<1025px): empilhado · ordem: TÍTULO → FORM → LISTA */
@media (max-width: 1024px) {
  .cta-section .cta-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "top"
      "form"
      "bottom" !important;
    gap: 28px !important;
    text-align: center !important;
  }
  .cta-section .cta-copy-top    { grid-area: top !important;    max-width: 720px; margin: 0 auto !important; }
  .cta-section .form-box        { grid-area: form !important;   max-width: 560px; margin: 0 auto !important; width: 100%; }
  .cta-section .cta-copy-bottom { grid-area: bottom !important; max-width: 640px; margin: 0 auto !important; }

  .cta-section .cta-copy-top *,
  .cta-section .cta-copy-bottom * { text-align: center !important; }
  .cta-section .cta-copy-bottom .cta-list { display: inline-block; text-align: left !important; }
  .cta-section .cta-copy-bottom .cta-list li { text-align: left !important; }
  .cta-section .cta-copy-bottom .cta-seals { justify-content: center !important; }
}

@media (max-width: 600px) {
  .cta-section .cta-grid { gap: 22px !important; }
  .cta-section .form-box { padding: 24px 18px !important; border-radius: var(--hf-r-xl) !important; }
}

/* Espaçamento entre o título e o sub para nunca colar */
.cta-section .cta-copy-top .section-label { margin-bottom: 14px !important; }
.cta-section .cta-copy-top .section-title { margin: 0 0 14px !important; }
.cta-section .cta-copy-top .section-sub   { margin: 0 !important; }

.cta-section .cta-copy-bottom .cta-list   { margin-bottom: 20px !important; }
.cta-section .cta-copy-bottom .cta-list li { margin-bottom: 8px; }

/* ════════════════════════════════════════════════════════════════
   v4.2 — Credito · seção "Produtos de Crédito" (contraste + centro)
═══════════════════════════════════════════════════════════════════ */
.credito-section {
  background: var(--hf-grad-cta) !important;
  position: relative;
  overflow: hidden;
  text-align: center !important;
}
.credito-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(213,208,252,.18) 0%, transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(217,245,196,.12) 0%, transparent 60%);
  pointer-events: none;
}
.credito-section > * { position: relative; z-index: 1; }

.credito-section .section-label,
.credito-section .section-label::before {
  text-align: center !important;
}
.credito-section .section-label {
  color: var(--hf-lavender) !important;
  display: inline-flex !important;
  justify-content: center;
  margin: 0 auto 16px !important;
}
.credito-section .section-label::before {
  background: var(--hf-lavender) !important;
  box-shadow: 0 0 0 4px rgba(213,208,252,.25) !important;
}

.credito-section .section-title,
.credito-section h2 {
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 auto 16px !important;
  max-width: 920px;
  text-shadow: 0 1px 2px rgba(0,0,0,.10);
}
.credito-section .section-sub {
  color: rgba(255,255,255,.86) !important;
  text-align: center !important;
  margin: 0 auto 32px !important;
  max-width: 760px;
}

/* Cards dentro da seção escura: branco com texto escuro */
.credito-section .credito-card {
  background: rgba(255,255,255,0.97) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: var(--hf-r-xl) !important;
  padding: 32px 26px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  transition: transform 280ms var(--hf-ease), box-shadow 280ms var(--hf-ease);
}
.credito-section .credito-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,.24);
}
.credito-section .credito-card h3 {
  color: var(--hf-navy) !important;
  margin: 14px 0 10px;
}
.credito-section .credito-card p {
  color: var(--hf-slate-600) !important;
  font-size: 14.5px;
  line-height: 1.55;
}

/* Ícone do card: gradient roxo com símbolo BRANCO centralizado */
.credito-section .credito-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--hf-purple), var(--hf-navy)) !important;
  border-radius: var(--hf-r-md) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 26px;
  margin: 0 auto !important;
}
.credito-section .credito-icon i,
.credito-section .credito-icon svg,
.credito-section .credito-icon * {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* Botão branco no fim */
.credito-section .btn-white {
  background: #ffffff !important;
  color: var(--hf-navy) !important;
  border: 1px solid #ffffff !important;
}
.credito-section .btn-white:hover {
  background: var(--hf-lavender-soft) !important;
}

.credito-section .credito-cta {
  text-align: center !important;
  margin-top: 36px;
}

/* Garantia adicional: qualquer texto solto na seção fica claro */
.credito-section p, .credito-section span:not(.section-title em),
.credito-section li {
  color: rgba(255,255,255,.86);
}
.credito-section .credito-card *:not(.credito-icon):not(.credito-icon *) {
  text-shadow: none;
}

/* MOBILE: 1 coluna, padding ajustado */
@media (max-width: 768px) {
  .credito-section { padding: 64px 18px !important; }
  .credito-section .credito-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
}
