@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Montserrat:wght@500;700;800&family=Inter:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { max-width: 100%; }
body { max-width: 100%; overflow-x: hidden; text-wrap: balance; }

:root {
  --primary:      #1fc6c9;
  --primary-dark: #0f8f92;
  --bg:           #02090E;
  --bg-alt:       #060d12;
  --bg-card:      #0a1520;
  --text:         #ffffff;
  --text-muted:   #8a9ab0;
  --text-dim:     #3a4a5a;
  --border:       rgba(255,255,255,0.07);
  --border-accent:rgba(31,198,201,0.25);
  --radius:       14px;
  --radius-sm:    8px;
  --transition:   0.28s ease;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; border: 2px solid var(--bg); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--qual-h, 44px) + 80px);
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
p { margin-bottom: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ══════════════════════════════
   GRADIENT TEXT — .titulo1
══════════════════════════════ */
.titulo1 {
  font-weight: 800;
  background: linear-gradient(90deg, #56e3e6 0%, #1fc6c9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s !important; }
.delay-2 { transition-delay: 0.16s !important; }
.delay-3 { transition-delay: 0.24s !important; }
.delay-4 { transition-delay: 0.32s !important; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(90deg, #00E0CF 0%, #1D615B 100%);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition);
  animation: btnPulse 2.4s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(0,0,0,0.2), 0 0 0px rgba(31,198,201,0); }
  50%       { box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 28px 6px rgba(31,198,201,0.45); }
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  animation: btn-shimmer 2.8s ease-in-out infinite;
}
@keyframes btn-shimmer {
  0%   { left: -120%; }
  45%  { left: 160%; }
  100% { left: 160%; }
}
.btn-primary:hover {
  box-shadow: 0 0 28px rgba(31,198,201,0.45), 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.btn-icon svg { width: 100%; height: 100%; fill: #fff; }

/* ══════════════════════════════
   SITE HEADER — glass navbar
══════════════════════════════ */
.site-header {
  position: fixed;
  top: var(--qual-h, 44px); left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(2, 9, 14, 0.55);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 40px rgba(0,0,0,0.32), inset 0 1px 0 rgba(31,198,201,0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(2, 9, 14, 0.82);
  box-shadow: 0 8px 48px rgba(0,0,0,0.55), inset 0 1px 0 rgba(31,198,201,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 28px;
}
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 80px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.header-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 6px 13px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.22s ease, background 0.22s ease;
}
.header-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-btn-wpp {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.2s ease;
}
.header-btn-wpp:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-1px);
}
.header-btn-wpp svg { flex-shrink: 0; }
.header-btn-diag {
  display: flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1fc6c9 0%, #0f8f92 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(31,198,201,0);
  transition: opacity 0.22s ease, transform 0.2s ease, box-shadow 0.22s ease;
}
.header-btn-diag:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(31,198,201,0.35);
}
/* Hamburger */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-left: auto;
}
.header-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header.menu-open .header-hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header.menu-open .header-hamburger span:nth-child(2) {
  opacity: 0;
}
.site-header.menu-open .header-hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* Mobile drawer */
.header-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(2, 9, 14, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.site-header.menu-open .header-mobile-nav {
  display: flex;
}
.header-mobile-link {
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}
.header-mobile-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.header-mobile-wpp { color: #25D366 !important; }
.header-mobile-diag {
  background: linear-gradient(135deg, #1fc6c9 0%, #0f8f92 100%);
  color: #fff !important;
  text-align: center;
  font-weight: 700;
  margin-top: 8px;
}
/* Responsive breakpoints */
@media (max-width: 900px) {
  .header-nav  { display: none; }
  .header-ctas { display: none; }
  .header-hamburger { display: flex; }
}

/* ══════════════════════════════
   QUALIFIER BAR
══════════════════════════════ */
.qualifier-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #063f42 0%, #0b7275 45%, #0f9ea1 100%);
  padding: clamp(10px, 1.4vw, 13px) clamp(10px, 3vw, 28px);
  text-align: center;
  transition: transform 0.28s ease;
}
.qualifier-bar.hidden {
  transform: translateY(-100%);
}
.qualifier-bar p {
  font-size: clamp(10px, 2.6vw, 14px);
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}
.qualifier-bar strong { color: #fff; font-weight: 700; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.section-hero {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}

/* ── Layout base (mobile-first) ── */
.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  margin: 0;
}

.hero-inner::before { content: none; }

.hero-logo-wrap { display: flex; justify-content: center; width: 100%; }
.hero-logo { height: 44px; width: auto; }
.hero-content { width: 100%; text-align: center; }

/* ── Coluna de texto ── */
.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 0 0 48px;
  margin-top: -65px;
}

/* ── Coluna da imagem ── */
.hero-image-col {
  width: 100%;
  order: -1;
  position: relative;
}

.hero-image-wrap {
  position: relative;
  overflow: visible;
}

.hero-img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(31,198,201,0.18) 0%, transparent 62%);
  pointer-events: none;
  z-index: 1;
}

.hero-dots-grid {
  position: absolute;
  top: 6%;
  right: 0;
  width: 110px;
  height: 220px;
  background-image: radial-gradient(circle, rgba(31,198,201,0.32) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

.hero-person-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 75%, transparent 110%);
}

.hero-img-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 58%;
  background: linear-gradient(to top, var(--bg) 0%, rgba(2,9,14,0.55) 45%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* ── Badges flutuantes (só desktop) ── */
.hero-float-badge {
  position: absolute;
  display: none;
  align-items: center;
  gap: 11px;
  padding: 11px 16px;
  border-radius: 14px;
  background: rgba(2, 9, 14, 0.80);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(31,198,201,0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(31,198,201,0.08);
  z-index: 5;
  white-space: nowrap;
  animation: badge-float 4s ease-in-out infinite;
}

.hero-float-badge--a {
  top: 15%;
  left: 10px;
  animation-delay: 2.5s;
}
.hero-float-badge--b {
  bottom: 20%;
  right: 14px;
  animation-delay: 1.5s;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .hero-float-badge {
    display: flex;
    padding: 8px 12px;
    gap: 9px;
    border-radius: 12px;
    z-index: 1;
  }

  .hero-float-badge--a {
    top: 60px;
    left: 8px;
  }

  .hero-float-badge--b {
    bottom: 120px;
    right: 8px;
  }

  .hfb-icon-wrap {
    width: 32px;
    height: 30px;
    border-radius: 8px;
  }

  .hfb-icon-wrap svg {
    width: 15px;
    height: 15px;
  }

  .hfb-text strong {
    font-size: 13px;
  }

  .hfb-text span {
    font-size: 10px;
  }
}

.hfb-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(31,198,201,0.10);
  border: 1px solid rgba(31,198,201,0.20);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hfb-icon-wrap svg { width: 18px; height: 18px; fill: var(--primary); }

.hfb-text { display: flex; flex-direction: column; gap: 2px; }
.hfb-text strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}
.hfb-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

/* Entrance fade-up — same easing as ElegantShape text variants */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-headline {
  font-size: clamp(32px, 4.8vw, 58px);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  text-align: center;
  animation: heroFadeUp 1s cubic-bezier(0.25,0.4,0.25,1) 0.7s both;
}
.hero-headline strong { font-weight: 800; }

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
  margin: 0 auto;
  text-align: center;
  animation: heroFadeUp 1s cubic-bezier(0.25,0.4,0.25,1) 0.9s both;
}

.hero-cta-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  animation: heroFadeUp 1s cubic-bezier(0.25,0.4,0.25,1) 1.1s both;
}

/* ══════════════════════════════
   BENEFITS TICKER
══════════════════════════════ */
.benefits-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 0 solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}

.benefits-track { overflow: hidden; }

.benefits-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.benefits-bar:hover .benefits-list { animation-play-state: paused; }

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}

.b-icon {
  display: inline-flex;
  align-items: center;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.b-icon svg { width: 100%; height: 100%; fill: var(--primary); }

/* ══════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════ */
.section-text {
  text-align: center;
  margin-bottom: 48px;
  width: 100%;
}

.section-h1 {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
  text-align: center;
}

.section-desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.section-cta { margin-top: 48px; text-align: center; }

/* ══════════════════════════════
   PROBLEM + SEGMENTS
══════════════════════════════ */
.section-problem {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.problem-box { margin-bottom: 56px; }

.problem-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 20px;
}

.problem-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 680px;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.segment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  cursor: default;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.segment-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px rgba(31,198,201,0.06);
}

.segment-icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(31,198,201,0.1);
  border: 2px solid rgba(31,198,201,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.segment-icon-circle svg { width: 28px; height: 28px; fill: var(--primary); }

.segment-card h3 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.segment-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════
   TESTIMONIALS (vídeos)
══════════════════════════════ */
.section-testimonials {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.video-thumb {
  position: relative;
  background: linear-gradient(145deg, #0f1f2e 0%, #0a1520 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color var(--transition);
}
.video-card:hover .video-thumb { border-color: var(--border-accent); }

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background var(--transition);
}
.video-card:hover .video-overlay { background: rgba(0,0,0,0.15); }

.play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(31,198,201,0.15);
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.play-btn:hover { background: rgba(31,198,201,0.3); transform: scale(1.08); }
.play-btn svg { width: 28px; height: 28px; fill: var(--primary); }

.video-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ══════════════════════════════
   CASES
══════════════════════════════ */
.section-cases {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}

@keyframes caseReveal {
  0%   { opacity: 0; transform: translateY(70px) scale(0.55); filter: blur(14px); }
  55%  { opacity: 1; filter: blur(0px); }
  78%  { transform: translateY(-8px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0px); }
}

.case-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  background: transparent;
}

.cases-grid .case-item.case-visible {
  animation: caseReveal 0.85s cubic-bezier(0.16,1,0.3,1) forwards;
}
.cases-grid .case-item.case-visible:nth-child(1) { animation-delay: 0s;    }
.cases-grid .case-item.case-visible:nth-child(2) { animation-delay: 0.12s; }
.cases-grid .case-item.case-visible:nth-child(3) { animation-delay: 0.24s; }
.cases-grid .case-item.case-visible:nth-child(4) { animation-delay: 0.36s; }

/* Hover — glow na imagem, sem transform no container */
.cases-grid .case-item.case-visible:hover .case-img {
  border-color: rgba(31,198,201,0.45);
  box-shadow:
    0 0 20px rgba(31,198,201,0.20),
    0 0 50px rgba(31,198,201,0.08);
  transform: translateY(-4px);
}

.case-item .case-img {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.case-platform-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}
.case-google { background: rgba(52,168,83,0.12); color: #5cc870; border: 1px solid rgba(52,168,83,0.3); }
.case-meta   { background: rgba(66,103,178,0.12); color: #7b9cf7; border: 1px solid rgba(66,103,178,0.3); }

.case-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.case-placeholder {
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: linear-gradient(135deg, #0d1f2d 0%, #0a1520 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 32px;
  min-height: 120px;
}

.case-metric {
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
}
.case-metric-label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.case-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  text-align: center;
  padding: 0;
}
.case-desc strong { color: #fff; }

/* ══════════════════════════════
   MÉTODO SCALE
══════════════════════════════ */
.section-metodo {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.section-metodo::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(0,224,207,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.metodo-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,224,207,0.08);
  border: 1px solid rgba(0,224,207,0.22);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 18px;
}

.metodo-list {
  max-width: 680px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
}

.metodo-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.metodo-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.metodo-letter-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(0,224,207,0.5);
  box-shadow: 0 0 28px rgba(0,224,207,0.22), 0 0 60px rgba(0,224,207,0.08), inset 0 0 20px rgba(0,224,207,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: box-shadow var(--transition), border-color var(--transition);
  animation: metodo-glow 4s ease-in-out infinite;
}
.metodo-item:hover .metodo-letter-wrap {
  border-color: rgba(0,224,207,0.85);
  box-shadow: 0 0 40px rgba(0,224,207,0.35), 0 0 80px rgba(0,224,207,0.12), inset 0 0 24px rgba(0,224,207,0.1);
}
@keyframes metodo-glow {
  0%, 100% { box-shadow: 0 0 28px rgba(0,224,207,0.22), 0 0 60px rgba(0,224,207,0.08), inset 0 0 20px rgba(0,224,207,0.06); }
  50%       { box-shadow: 0 0 40px rgba(0,224,207,0.35), 0 0 80px rgba(0,224,207,0.14), inset 0 0 28px rgba(0,224,207,0.1); }
}

.metodo-letter {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0,224,207,0.6);
  font-family: 'Sora', sans-serif;
}

.metodo-connector {
  width: 1px;
  flex: 1;
  min-height: 48px;
  background: linear-gradient(180deg, rgba(0,224,207,0.4) 0%, rgba(0,224,207,0.08) 100%);
  margin: 6px 0;
}

.metodo-content {
  padding-top: 16px;
  padding-bottom: 40px;
}

.metodo-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,224,207,0.08);
  border: 1px solid rgba(0,224,207,0.2);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 10px;
}

.metodo-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.metodo-desc {
  font-size: 14px;
  color: rgba(153, 215, 215, 0.744);
  line-height: 1.75;
  max-width: 480px;
}

/* ══════════════════════════════
   TESTIMONIAL CAROUSEL
══════════════════════════════ */
.section-carousel {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-swiper {
  padding-bottom: 16px !important;
  position: relative;
}

.t-slide-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background var(--transition);
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.t-slide-card:hover { background: #0d1c2a; }

.t-screenshot {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.t-screenshot-inner {
  width: 100%;
}

.t-msg-bubble {
  position: relative;
  padding-left: 16px;
}
.t-msg-bubble::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 2px;
  border-radius: 2px;
  background: var(--primary);
  opacity: 0.5;
}
.t-msg-bubble p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 8px;
}
.t-msg-time {
  font-size: 11px;
  color: var(--primary);
  display: block;
  text-align: right;
  opacity: 0.7;
}

.t-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(31,198,201,0.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.t-info strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.t-info span   { font-size: 12px; color: var(--text-muted); }

/* Swiper custom arrows */
.carousel-wrap {
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
  color: var(--primary) !important;
  width: 44px !important;
  height: 44px !important;
  background: var(--bg-card) !important;
  border: 1px solid rgba(31,198,201,0.28) !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35) !important;
  transition: background var(--transition), border-color var(--transition), transform var(--transition) !important;
  z-index: 10 !important;
}
.swiper-button-prev { left: -22px !important; }
.swiper-button-next { right: -22px !important; }

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(31,198,201,0.12) !important;
  border-color: rgba(31,198,201,0.5) !important;
  transform: translateY(-50%) scale(1.08) !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 13px !important;
  font-weight: 800 !important;
}

@media (max-width: 768px) {
  .swiper-button-prev { left: -18px !important; }
  .swiper-button-next { right: -18px !important; }
  .swiper-button-prev,
  .swiper-button-next {
    width: 36px !important;
    height: 36px !important;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after { font-size: 11px !important; }
}

/* ══════════════════════════════
   FORM
══════════════════════════════ */
.section-form {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid rgba(0,224,207,0.12);
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0,224,207,0.05), inset 0 0 0 1px rgba(0,224,207,0.06);
  overflow: hidden;
  position: relative;
}
.form-layout::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,224,207,0.5), transparent);
}
.form-layout:focus-within {
  border-color: rgba(0,224,207,0.22);
  box-shadow: 0 0 80px rgba(0,224,207,0.08), inset 0 0 0 1px rgba(0,224,207,0.1);
}

.form-main-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

.form-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
  transition: border-color var(--transition);
}
.form-step-card:hover { border-color: var(--border-accent); }

.form-step-num {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0,224,207,0.3);
}

.form-step-card .form-step-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.form-step-card .form-step-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.form-steps-col {
  padding: 40px 36px;
}

.form-col {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(0,224,207,0.1);
  border-radius: 0;
  padding: 40px 36px;
}

.form-col-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}

.form-fields { display: flex; flex-direction: column; gap: 10px; }

.form-html-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.form-input,
.form-select {
  width: 100%;
  background: #2e2e2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  height: 48px;
  padding: 0 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus {
  border-color: rgba(31,198,201,0.45);
  background: #353535;
  box-shadow: 0 0 0 3px rgba(31,198,201,0.07);
}
.form-input::placeholder { color: #9a9a9a; }
.form-input.error,
.form-select.error {
  border-color: rgba(239,68,68,0.5);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.08);
}

.select-wrapper { position: relative; }
.select-wrapper .form-select { padding-right: 40px; cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 12px; height: 12px;
  display: flex; align-items: center;
}
.select-arrow svg { width: 100%; height: 100%; fill: var(--text-dim); }
.form-select option { background: #0a1520; }

.form-submit {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #00E0CF 0%, #1D615B 100%);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 15px 0;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.form-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-18deg);
  animation: btn-shimmer 2.8s ease-in-out infinite;
}
.form-submit:hover:not(:disabled) {
  box-shadow: 0 0 28px rgba(31,198,201,0.4);
  transform: translateY(-1px);
}
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-submit .btn-icon svg { fill: #fff; }

.form-message {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: none;
}
.form-message.error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #fca5a5;
  display: block;
}

/* ══════════════════════════════
   SOBRE
══════════════════════════════ */
.section-sobre {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sobre-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
}

.sobre-text .section-h1 { margin-bottom: 30px; margin-top: 50px; }
.sobre-text p {
  font-size: 15px;
  color: rgba(215, 240, 238, 0.85);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.sobre-text .btn-primary { margin-top: 8px; }

.magic-word {
  display: inline;
  opacity: 0.15;
}

.sobre-stats-col {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  justify-content: center;
}

.stat-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  cursor: default;
  position: relative;
  overflow: hidden;
  flex: 1;
}

/* ── Dot ── */
.stat-dot {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(31,198,201,0.9), 0 0 28px rgba(31,198,201,0.5);
  opacity: 0;
  z-index: 4;
  transition: opacity 0.4s ease;
}
.stat-box.stat-animated .stat-dot {
  opacity: 1;
  animation: stat-dot-pulse 2.4s ease-in-out infinite;
}
@keyframes stat-dot-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(31,198,201,0.9), 0 0 28px rgba(31,198,201,0.5); }
  50%       { box-shadow: 0 0 20px rgba(31,198,201,1),   0 0 50px rgba(31,198,201,0.7); }
}

/* ── Ray ── */
.stat-ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(from 0deg, transparent 0%, rgba(31,198,201,0.05) 18%, transparent 36%);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.stat-box.stat-animated .stat-ray {
  opacity: 1;
  animation: stat-ray-spin 5s linear infinite;
}
@keyframes stat-ray-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── 4 border lines ── */
.stat-line {
  position: absolute;
  background: var(--primary);
  opacity: 0;
  z-index: 3;
  border-radius: 1px;
}
.stat-line.topl   { top: 0;    left: 0;   height: 1px; width: 0; }
.stat-line.rightl { top: 0;    right: 0;  width: 1px;  height: 0; }
.stat-line.bottoml{ bottom: 0; right: 0;  height: 1px; width: 0; }
.stat-line.leftl  { bottom: 0; left: 0;   width: 1px;  height: 0; }

.stat-box.stat-animated .stat-line.topl    { animation: stat-draw-h 0.6s ease         0s    forwards; }
.stat-box.stat-animated .stat-line.rightl  { animation: stat-draw-v 0.6s ease         0.6s  forwards; }
.stat-box.stat-animated .stat-line.bottoml { animation: stat-draw-h 0.6s ease         1.2s  forwards; }
.stat-box.stat-animated .stat-line.leftl   { animation: stat-draw-v 0.6s ease         1.8s  forwards; }

@keyframes stat-draw-h {
  from { width: 0;    opacity: 0.7; }
  to   { width: 100%; opacity: 0.7; }
}
@keyframes stat-draw-v {
  from { height: 0;    opacity: 0.7; }
  to   { height: 100%; opacity: 0.7; }
}

.stat-num {
  font-size: 45px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.stat-label {
    font-size: 15px;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #b8b8b8 45%,
        #6f6f6f 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.section-faq {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.faq-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.faq-title-col { text-align: center; width: 100%; }
.faq-title-col .section-h1 { position: static; }

.faq-list { display: flex; flex-direction: column; width: 100%; max-width: 760px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
  line-height: 1.4;
}
.faq-q:hover { color: var(--primary); }

.faq-chevron {
  display: inline-flex;
  width: 16px; height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(.22,1,.36,1);
}
.faq-chevron svg { width: 100%; height: 100%; fill: var(--primary); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.22,1,.36,1);
}
.faq-a p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 24px;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: #01060a;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 52px 0 36px;
  text-align: center;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-logo { height: 150px; width: auto; margin-bottom: 14px; opacity: 0.75; }

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

@keyframes socialFloat {
  0%, 100% { translate: 0 0; }
  50%       { translate: 0 -9px; }
}

.social-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  box-shadow:
    4px 4px 12px rgba(0,0,0,0.45),
    -1px -1px 4px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.12);
  opacity: 0;
  translate: 0 20px;
  scale: 0.88;
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
              translate 0.55s cubic-bezier(0.22,1,0.36,1),
              scale 0.55s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}
.social-icon.visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}
.social-icon.visible:nth-child(1) {
  animation: socialFloat 3s ease-in-out 0.7s infinite;
}
.social-icon.visible:nth-child(2) {
  animation: socialFloat 3s ease-in-out 1.1s infinite;
}
.social-icon:nth-child(1) { transition-delay: 0.08s; }
.social-icon:nth-child(2) { transition-delay: 0.20s; }

.social-icon.visible:hover {
  animation-play-state: paused;
  scale: 1.1;
  box-shadow:
    6px 10px 24px rgba(0,0,0,0.55),
    -1px -1px 6px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition-delay: 0s;
}

.social-icon--whatsapp {
  background: linear-gradient(145deg, rgba(37,211,102,0.22), rgba(37,211,102,0.06));
  border-color: rgba(37,211,102,0.28);
}
.social-icon--whatsapp:hover {
  border-color: rgba(37,211,102,0.55);
  background: linear-gradient(145deg, rgba(37,211,102,0.32), rgba(37,211,102,0.10));
}
.social-icon--whatsapp svg { fill: #25d366; }

.social-icon--instagram {
  background: linear-gradient(145deg, rgba(225,48,108,0.18), rgba(131,58,180,0.08));
  border-color: rgba(225,48,108,0.25);
}
.social-icon--instagram:hover {
  border-color: rgba(225,48,108,0.50);
  background: linear-gradient(145deg, rgba(225,48,108,0.28), rgba(131,58,180,0.14));
}
.social-icon--instagram svg { fill: url(#ig-grad); }

.footer-socials svg { width: 20px; height: 20px; }

.footer-legal {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--text-muted); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .cases-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .metodo-list { max-width: 100%; }
  .sobre-stats-col { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
  .videos-grid { grid-template-columns: 1fr; max-width: 360px; }
  .segments-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .cases-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; gap: 32px; }

  .sobre-stats-col { flex-direction: column; align-items: center; }
  .stat-box { width: 100%; max-width: 340px; }

  .form-layout { grid-template-columns: 1fr; }
  .form-steps-col { padding: 32px 24px; }
  .form-col { border-left: none; border-top: 1px solid rgba(0,224,207,0.1); padding: 32px 24px; }

  .hero-headline { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .hero-text-col { padding: 0 0 40px; margin-top: -7px; }

}


@media (max-width: 540px) {
  .section-h1 { font-size: 26px; }
  .btn-primary { padding: 13px 24px; font-size: 15px; }
  .metodo-list { margin-top: 32px; }
  .faq-list { max-width: 100%; }
}

/* ══════════════════════════════
   HERO — Desktop Side-by-Side Layout
   Texto à esquerda · Hero-person à direita
══════════════════════════════ */
@media (min-width: 930px) {

  body {
    padding-top: calc(var(--qual-h, 80px) + 7px);
  }

  .section-hero {
    min-height: 82vh;
    padding-bottom: 0;
    display: flex;
    align-items: center;
  }

  .section-hero > .container {
    width: 100%;
  }

  /* Dois colunas no desktop */
  .hero-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0;
    margin: 0;
    padding: 48px 0 0;
    min-height: 78vh;
  }

  /* Coluna de texto — esquerda */
  .hero-text-col {
    flex: 0 0 52%;
    max-width: 52%;
    align-items: flex-start;
    text-align: left;
    gap: 28px;
    padding: 40px 52px 48px 0;
    margin-top: 0;
    order: 0;
  }

  /* Coluna da imagem — direita */
  .hero-image-col {
    flex: 0 0 70%;
    max-width:70%;
    align-self: center;
    order: 0;
    position: relative;
  }

  /* Fade lateral removido — laterais 100% visíveis */
  .hero-image-col::before {
    content: none;
  }

  .hero-image-wrap {
    overflow: visible;
  }

  .hero-person-img {
    width: 100%;
    height: auto;
    /* Dissolve apenas a base da imagem no fundo da página — desktop */
    -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  }

  /* Exibe os badges no desktop */
  .hero-float-badge { display: flex; }

  /* Alinhamento dos textos */
  .hero-content { text-align: left; }
  .hero-headline {
    text-align: left;
    font-size: clamp(36px, 3vw, 58px);
  }
  .hero-desc {
    text-align: left;
    margin: 0;
    font-size: 17px;
    max-width: 500px;
  }
  .hero-cta-wrap { justify-content: flex-start; }
}

/* ══════════════════════════════
   MÉTODO SCALE — Desktop Horizontal Scroll
   overflow: visible em tudo — scroll via transform no JS
   para o glow (box-shadow) dos círculos não ser cortado
══════════════════════════════ */
@media (min-width: 769px) {
  .metodo-scroll-wrap {
    overflow: visible;
    position: relative;
    cursor: grab;
    padding-bottom: 8px;
  }
  .metodo-scroll-wrap:active { cursor: grabbing; }

  .metodo-list {
    flex-direction: row;
    max-width: none;
    overflow: visible;
    gap: 0;
    margin: 56px 0 0;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
  }

  .metodo-item {
    flex-direction: column;
    align-items: center;
    flex: 0 0 220px;
    gap: 0;
    position: relative;
  }

  .metodo-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 1px;
    background: linear-gradient(90deg, rgba(0,224,207,0.5) 0%, rgba(0,224,207,0.1) 100%);
    pointer-events: none;
  }

  .metodo-track {
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .metodo-letter-wrap {
    transform-origin: center bottom;
    will-change: transform;
    transition: box-shadow var(--transition), border-color var(--transition);
  }

  .metodo-content {
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .metodo-connector { display: none; }

  .metodo-content {
    padding-top: 20px;
    padding-bottom: 0;
    text-align: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .metodo-desc { max-width: none; }
}

/* ══════════════════════════════
   HFB BADGES — mobile
   Edite os valores abaixo para ajustar posição e tamanho no mobile
══════════════════════════════ */
@media (max-width: 900px) {
  .hero-float-badge {
    display: flex;
    padding: 8px 12px;
    gap: 9px;
    border-radius: 12px;
    z-index: 1;
  }

  /* Badge esquerdo — ajuste top (altura) e left (distância da borda esquerda) */
  .hero-float-badge--a {
    top: 45px;
    left: 0px;
    bottom: auto;
    right: auto;
  }

  /* Badge direito — ajuste bottom (altura) e right (distância da borda direita) */
  .hero-float-badge--b {
    bottom: 260px;
    right: 0px;
    top: auto;
    left: auto;
  }

  .hfb-icon-wrap {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
  }

  .hfb-icon-wrap svg {
    width: 15px !important;
    height: 15px !important;
  }

  .hfb-text strong {
    font-size: 13px !important;
  }

  .hfb-text span {
    font-size: 10px !important;
  }
}
