/* ============================================================
   MARKETIFY 360 — styles.css
   Paleta: Lime #dcff22 | Preto #000 | Branco #fff | Cinza #9b9b9b
           Fundo escuro #111111 | Fundo claro #f7f7f2
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #111111;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---------- CSS VARIABLES ---------- */
:root {
  --lime: #dcff22;
  --lime-dark: #b8d900;
  --black: #000000;
  --white: #ffffff;
  --gray: #9b9b9b;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --light: #f7f7f2;
  --light-2: #eeeeea;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow: 0 4px 24px rgba(0,0,0,.18);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.32);

  --transition: 0.25s ease;
  --header-h: 72px;
  --max-w: 1200px;
  --gutter: 24px;
}

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: 96px 0; }
.section-dark  { background: var(--dark); color: var(--white); }
.section-light { background: var(--light); color: var(--black); }
.section-lime  { background: var(--lime); color: var(--black); }

/* ---------- TYPOGRAPHY ---------- */
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 700; line-height: 1.3; }
p  { font-size: clamp(0.95rem, 1.4vw, 1.05rem); line-height: 1.72; }

.highlight { color: var(--lime); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: inherit; opacity: .72; }
.section-header .section-sub { margin-top: 10px; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--black);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag--dark {
  background: var(--black);
  color: var(--lime);
}

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 14px 28px;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: .01em;
}

.btn--primary {
  background: var(--lime);
  color: var(--black);
}
.btn--primary:hover { background: #c8ea00; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,255,34,.35); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-2px); }

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid rgba(0,0,0,.35);
}
.btn--outline-dark:hover { border-color: var(--black); background: rgba(0,0,0,.06); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.22);
}
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }

.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover { background: #1a1a1a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.4); }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

.btn--whatsapp-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid #25D366;
}
.btn--whatsapp-outline:hover { background: #25D366; transform: translateY(-2px); }

.btn--lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--full { width: 100%; justify-content: center; }


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(0,0,0,.96);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img { width: clamp(165px, 15vw, 205px); height: auto; display: block; object-fit: contain; }
.header__logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--white);
}
.header__logo-text span { color: var(--lime); }

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__nav a {
  display: block;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.header__nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__actions .btn--whatsapp { padding: 10px 18px; font-size: .85rem; border-radius: var(--radius); }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: calc(var(--header-h) + 96px) 0 112px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/bg-hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: .04;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(ellipse at center, rgba(220,255,34,.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.hero__glow {
  position: absolute;
  bottom: -120px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(220,255,34,.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__texture {
  position: absolute;
  inset: 0;
  background-image: url('assets/textura-numeros.png');
  background-size: 480px;
  background-repeat: repeat;
  opacity: .025;
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 56px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--lime);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--black);
  opacity: .5;
}

.hero__title { color: var(--white); margin-bottom: 24px; }

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero__support {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__tags span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.04);
  transition: border-color var(--transition), color var(--transition);
}
.hero__tags span:hover { border-color: rgba(220,255,34,.4); color: var(--lime); }

/* --- Dashboard Card --- */
.hero__dashboard {
  position: relative;
}
.hero__dashboard::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 60% 40%, rgba(220,255,34,.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.dashboard-card {
  background: rgba(20,20,20,.95);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 32px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(220,255,34,.06);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.dashboard-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dashboard-dot.green  { background: #2ecc71; }
.dashboard-dot.yellow { background: var(--lime); }
.dashboard-dot.red    { background: #e74c3c; }
.dashboard-title {
  margin-left: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.metric {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.metric__value { display: block; font-size: 1.5rem; font-weight: 900; color: var(--white); }
.metric__label { display: block; font-size: .72rem; color: var(--gray); margin-top: 2px; }
.metric__delta {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 100px;
}
.metric__delta.positive { background: rgba(220,255,34,.15); color: var(--lime); }

.dashboard-chart { position: relative; height: 100px; margin-bottom: 20px; overflow: hidden; }

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-bottom: 8px;
}
.bar {
  flex: 1;
  background: rgba(255,255,255,.08);
  border-radius: 4px 4px 0 0;
  transition: background var(--transition);
}
.bar.active { background: var(--lime); }

.chart-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
}
.chart-line svg { width: 100%; height: 100%; }

.dashboard-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dtag {
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12);
}
.dtag.meta    { color: #a78bfa; border-color: rgba(167,139,250,.3); background: rgba(167,139,250,.08); }
.dtag.google  { color: #60a5fa; border-color: rgba(96,165,250,.3);  background: rgba(96,165,250,.08);  }
.dtag.crm     { color: var(--lime); border-color: rgba(220,255,34,.3); background: rgba(220,255,34,.08); }
.dtag.whatsapp{ color: #4ade80; border-color: rgba(74,222,128,.3); background: rgba(74,222,128,.08); }


/* ============================================================
   SEÇÃO 2 — DORES
   ============================================================ */
.dores { background-image: url('assets/bg-home.png'); background-size: cover; background-position: center; }

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

.dor-card {
  background: var(--white);
  border: 1.5px solid var(--light-2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.dor-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.dor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,.13);
  border-color: rgba(0,0,0,.12);
}
.dor-card:hover::after { transform: scaleX(1); }

.dor-card__icon {
  width: 52px; height: 52px;
  background: var(--black);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--lime);
  flex-shrink: 0;
}

.dor-card h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: 10px; color: var(--black); line-height: 1.35; }
.dor-card p  { font-size: .9rem; color: #555; line-height: 1.65; }


/* ============================================================
   SEÇÃO 3 — SOBRE
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-pillar {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.about-pillar:hover { transform: translateY(-4px); border-color: rgba(220,255,34,.4); }
.about-pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.about-pillar:hover::after { transform: scaleX(1); }

.pillar-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(220,255,34,.08);
  line-height: 1;
  position: absolute;
  top: 16px; right: 16px;
  letter-spacing: -.04em;
}

.pillar-icon {
  width: 52px; height: 52px;
  background: rgba(220,255,34,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 20px;
}

.about-pillar h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.about-pillar p  { font-size: .9rem; color: var(--gray); line-height: 1.65; }


/* ============================================================
   SEÇÃO 4 — MÉTODO
   ============================================================ */
.metodo__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.step__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(220,255,34,.12);
  position: relative;
  z-index: 1;
}

.step__connector {
  flex: 0 0 auto;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), rgba(220,255,34,.2));
  margin-top: 31px;
  align-self: flex-start;
}

.step__content h3 { font-size: 1.05rem; color: var(--black); margin-bottom: 8px; }
.step__content p  { font-size: .88rem; color: #555; line-height: 1.65; }


/* ============================================================
   SEÇÃO 5 — VERTICAIS
   ============================================================ */
.verticais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vertical-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.vertical-card:hover {
  transform: translateY(-6px);
  border-color: var(--lime);
  background: rgba(220,255,34,.04);
}

.vertical-card__icon {
  width: 56px; height: 56px;
  background: rgba(220,255,34,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 20px;
  transition: background var(--transition);
}
.vertical-card:hover .vertical-card__icon { background: rgba(220,255,34,.2); }

.vertical-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.vertical-card p  { font-size: .9rem; color: var(--gray); line-height: 1.6; flex: 1; }
.vertical-card__cta {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--lime);
  margin-top: 20px;
  transition: gap var(--transition);
}


/* ============================================================
   SEÇÃO 6 — CASES
   ============================================================ */
.cases__carousel {
  position: relative;
  padding: 0 54px 44px;
}
.cases__viewport {
  overflow: hidden;
}
.cases__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 12px;
}
.cases__track::-webkit-scrollbar { display: none; }
.carousel-btn {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: var(--black);
  color: var(--lime);
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  transition: transform var(--transition), background var(--transition);
}
.carousel-btn:hover { transform: translateY(-50%) scale(1.06); background: #151515; }
.carousel-btn--prev { left: 0; }
.carousel-btn--next { right: 0; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.carousel-dots span {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
}
.carousel-dots span:first-child { background: var(--lime); box-shadow: 0 0 0 3px rgba(220,255,34,.3); }

.case-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1.5px solid var(--light-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(0,0,0,.16);
}
.case-card:hover .case-card__overlay { opacity: 1; }

.case-card__category {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--lime);
  padding: 10px 20px;
}

.case-card__image {
  height: 220px;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}
.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.case-card:hover .case-card__image img { transform: scale(1.04); }

.case-img--fallback {
  background: var(--dark-2);
  background-image:
    linear-gradient(135deg, rgba(220,255,34,.06) 25%, transparent 25%),
    linear-gradient(225deg, rgba(220,255,34,.06) 25%, transparent 25%),
    linear-gradient(315deg, rgba(220,255,34,.06) 25%, transparent 25%),
    linear-gradient(45deg,  rgba(220,255,34,.06) 25%, transparent 25%);
  background-size: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  opacity: 0;
  transition: opacity var(--transition);
}

.case-card__body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-card__body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}
.case-card__body p {
  font-size: .875rem;
  color: #555;
  line-height: 1.65;
  flex: 1;
}

.case-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.case-card__highlights li {
  font-size: .73rem;
  font-weight: 700;
  background: var(--black);
  color: var(--lime);
  padding: 5px 12px;
  border-radius: 100px;
}


/* ============================================================
   SEÇÃO 7 — DEPOIMENTOS
   ============================================================ */
.depoimentos {
  background: var(--light);
  padding-top: 72px;
}
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depoimento-card {
  background: var(--white);
  border: 1.5px solid var(--light-2);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: 0 18px 42px rgba(0,0,0,.07);
  position: relative;
  overflow: hidden;
}
.depoimento-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), transparent);
}
.depoimento-card__stars {
  color: var(--lime);
  letter-spacing: .12em;
  font-size: .88rem;
  margin-bottom: 18px;
  text-shadow: 0 0 1px rgba(0,0,0,.3);
}
.depoimento-card p {
  font-size: .94rem;
  line-height: 1.75;
  color: #3d3d3d;
  margin-bottom: 24px;
}
.depoimento-card__author {
  border-top: 1px solid var(--light-2);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.depoimento-card__author strong { color: var(--black); font-size: .96rem; }
.depoimento-card__author span { color: #666; font-size: .82rem; line-height: 1.45; }


/* ============================================================
   SEÇÃO 7 — ESCADA
   ============================================================ */
.escada__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}

.escada-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.escada-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.2); }

.escada-card--free {
  border-color: rgba(220,255,34,.4);
  background: rgba(220,255,34,.05);
}
.escada-card--free:hover { border-color: var(--lime); }

.escada-card__tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--black);
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.escada-card__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(220,255,34,.12);
  line-height: 1;
}
.escada-card--free .escada-card__num { color: rgba(220,255,34,.25); }

.escada-card h3 { font-size: .95rem; color: var(--white); font-weight: 700; }
.escada-card p  { font-size: .85rem; color: var(--gray); line-height: 1.6; flex: 1; }
.escada-card__price {
  font-size: .8rem;
  font-weight: 700;
  color: var(--lime);
  padding: 4px 0;
}


/* ============================================================
   SEÇÃO 8 — DIAGNÓSTICO
   ============================================================ */
.diagnostico { padding: 96px 0; }

.diagnostico__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr);
  gap: 72px;
  align-items: center;
}

.diagnostico__info {
  position: relative;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.diagnostico__info::before {
  content: "360°";
  position: absolute;
  right: -22px;
  bottom: 16px;
  font-size: clamp(5rem, 10vw, 8.5rem);
  line-height: .75;
  font-weight: 900;
  letter-spacing: -.08em;
  color: rgba(0,0,0,.055);
  pointer-events: none;
}

.diagnostico__info .section-tag { margin-bottom: 18px; }
.diagnostico__info h2 {
  max-width: 620px;
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 22px;
  color: var(--black);
}
.diagnostico__lead  {
  max-width: 560px;
  color: rgba(0,0,0,.72);
  margin-bottom: 26px;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.diagnostico__score {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 0 0 28px;
}
.diagnostico__score div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 22px;
  background: rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.08);
}
.diagnostico__score strong {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--black);
}
.diagnostico__score span {
  color: rgba(0,0,0,.72);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.35;
}

.diagnostico__list {
  max-width: 640px;
  position: relative;
  z-index: 1;
}
.diagnostico__list h3 { font-size: 1rem; font-weight: 900; color: var(--black); margin-bottom: 16px; margin-top: 8px; }
.diagnostico__list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.diagnostico__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  border: 1px solid rgba(0,0,0,.08);
  font-size: .9rem;
  color: rgba(0,0,0,.82);
  font-weight: 800;
}
.diagnostico__list li svg { color: var(--black); flex-shrink: 0; }

.diagnostico__promise {
  max-width: 640px;
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 26px;
  background: var(--black);
  color: var(--white);
  position: relative;
  z-index: 1;
}
.diagnostico__promise span {
  display: block;
  color: var(--lime);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
  margin-bottom: 6px;
}
.diagnostico__promise strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.45;
}

/* FORM */
.diagnostico__form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  border: 1px solid rgba(0,0,0,.06);
}

.diagnostico__form h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 7px;
}
.form-group label span { color: #e74c3c; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--light);
  border: 2px solid var(--light-2);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .92rem;
  font-family: inherit;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 4px rgba(220,255,34,.2);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-note {
  text-align: center;
  font-size: .8rem;
  color: #888;
  margin-top: 12px;
}


/* ============================================================
   SEÇÃO 9 — BLOG
   ============================================================ */
.blog { background-image: url('assets/bg-home.png'); background-size: cover; background-position: center; }

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

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--light-2);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,.12);
}
.blog-card:hover::before { transform: scaleX(1); }

.blog-card__cat {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--lime);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}

.blog-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; line-height: 1.35; }
.blog-card h3 a { color: var(--black); transition: color var(--transition); }
.blog-card h3 a:hover { color: #333; }
.blog-card p  { font-size: .875rem; color: #555; line-height: 1.65; flex: 1; }
.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 800;
  color: var(--black);
  margin-top: 20px;
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 1px;
  width: fit-content;
  transition: gap var(--transition);
}
.blog-card:hover .blog-card__read { gap: 10px; }
.blog-card__read:hover { color: var(--black); }


/* ============================================================
   SEÇÃO 10 — CTA FINAL
   ============================================================ */
.cta-final { text-align: center; padding: 120px 0; }
.cta-final__inner { max-width: 720px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.cta-final p  { font-size: 1.1rem; color: rgba(255,255,255,.65); margin-bottom: 48px; }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer__logo { display: flex; align-items: center; margin-bottom: 20px; }
.footer__logo img { width: min(190px, 70vw); height: auto; display: block; object-fit: contain; }
.footer__logo-text { font-size: 1.3rem; font-weight: 900; letter-spacing: -.03em; color: var(--white); }
.footer__logo-text span { color: var(--lime); }

.footer__brand p { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 24px; }

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: all var(--transition);
}
.footer__social a:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }

.footer__nav h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer__nav a:hover { color: var(--white); }

.footer__contact h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer__contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
}
.footer__contact a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer__contact a:hover { color: var(--lime); }
.footer__contact svg { color: var(--lime); flex-shrink: 0; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__tagline {
  font-size: .9rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: .02em;
}
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.3); }


/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,.55);
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: fabPulse 2.5s infinite;
  z-index: -1;
}
@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: .5; }
  70%  { transform: scale(1.6); opacity: 0;  }
  100% { transform: scale(1.6); opacity: 0;  }
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .hero__inner     { grid-template-columns: 1fr; gap: 48px; }
  .hero__content { order: 1; }
  .hero__dashboard { order: 2; }
  .dashboard-card  { max-width: 480px; margin: 0 auto; }

  .about__grid     { grid-template-columns: repeat(2, 1fr); }
  .escada__steps   { grid-template-columns: repeat(3, 1fr); }

  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  section { padding: 64px 0; }
  .dores__grid     { grid-template-columns: repeat(2, 1fr); }
  .verticais__grid { grid-template-columns: repeat(2, 1fr); }
  .case-card       { flex-basis: calc((100% - 24px) / 2); }
  .depoimentos__grid { grid-template-columns: 1fr; }
  .blog__grid      { grid-template-columns: repeat(2, 1fr); }

  .metodo__steps { flex-direction: column; align-items: stretch; }
  .step { flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; }
  .step__num { margin-bottom: 0; flex-shrink: 0; }
  .step__connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--lime), rgba(220,255,34,.2)); margin: 0 31px; align-self: auto; }

  .diagnostico__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  :root { --gutter: 16px; --header-h: 64px; }

  /* Header */
  .header__logo img { width: 160px; height: auto; max-width: 54vw; }
  .header__nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: rgba(0,0,0,.98); flex-direction: column; padding: 20px 16px 28px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .header__nav.open { display: flex; }
  .header__nav ul { flex-direction: column; gap: 2px; }
  .header__nav a { padding: 13px 16px; font-size: 1rem; border-radius: var(--radius); }
  .header__burger { display: flex; }
  .header__actions .btn--whatsapp { display: none; }

  /* Hero */
  .hero { padding: calc(var(--header-h) + 52px) 0 72px; }
  .hero__inner { gap: 32px; }
  .hero__badge { font-size: .68rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Sections */
  .dores__grid     { grid-template-columns: 1fr; gap: 14px; }
  .about__grid     { grid-template-columns: 1fr 1fr; gap: 14px; }
  .verticais__grid { grid-template-columns: 1fr; gap: 14px; }
  .cases__carousel { padding: 0 0 36px; }
  .cases__track { gap: 16px; padding-inline: 2px; }
  .case-card { flex-basis: min(86vw, 360px); min-width: min(86vw, 360px); }
  .carousel-btn { display: none; }
  .escada__steps   { grid-template-columns: 1fr 1fr; gap: 14px; }
  .blog__grid      { grid-template-columns: 1fr; gap: 14px; }

  .case-card__image { height: 200px; }
  .dor-card { padding: 24px 20px; }
  .blog-card { padding: 24px 20px; }

  .footer__top     { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom  { flex-direction: column; text-align: center; }

  .cta-final { padding: 72px 0; }
  .cta-final__actions { flex-direction: column; align-items: center; }
  .cta-final__actions .btn { width: 100%; max-width: 360px; justify-content: center; }

  .diagnostico__form-wrap { padding: 24px 18px; }
  .whatsapp-fab { bottom: 20px; right: 16px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }
  .about__grid   { grid-template-columns: 1fr; }
  .escada__steps { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
  .section-header { margin-bottom: 40px; }
  .blog__grid  { grid-template-columns: 1fr; }
  .hero__tags  { gap: 6px; }
  .hero__tags span { font-size: .68rem; padding: 6px 12px; }
}


/* ============================================================
   AJUSTES V4 — Home base Marketify
   ============================================================ */
.header__logo img {
  width: auto;
  height: clamp(34px, 3.2vw, 48px);
  max-width: min(250px, 48vw);
  object-fit: contain;
}

/* remove controles órfãos fora do carrossel de cases */
.carousel-btn:not(.cases__carousel .carousel-btn) {
  display: none !important;
}

.case-card__image img {
  opacity: 1;
  filter: none;
}

.case-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.18));
  pointer-events: none;
}

.case-card__category {
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__content {
    order: 1;
  }
  .hero__dashboard {
    order: 2;
  }
}

@media (max-width: 768px) {
  .hero__content {
    order: 1;
  }
  .hero__dashboard {
    order: 2;
  }
  .hero {
    padding-top: calc(var(--header-h) + 36px);
  }
  .header__logo img {
    height: 38px;
    max-width: 72vw;
  }
  .dashboard-card {
    margin-top: 10px;
  }
}


@media (max-width: 1100px) {
  .diagnostico__inner { grid-template-columns: 1fr; gap: 40px; }
  .diagnostico__info { min-height: auto; }
  .diagnostico__info h2,
  .diagnostico__lead,
  .diagnostico__score,
  .diagnostico__list,
  .diagnostico__promise { max-width: 100%; }
}

@media (max-width: 640px) {
  .diagnostico { padding: 72px 0; }
  .diagnostico__score { grid-template-columns: 1fr; }
  .diagnostico__score div { min-height: auto; gap: 18px; }
  .diagnostico__list ul { grid-template-columns: 1fr; }
  .diagnostico__list li { border-radius: 18px; }
  .diagnostico__promise { border-radius: 22px; }
}

/* ============================================================
   GHL EMBED + CAPTURA WHATSAPP
   ============================================================ */
.diagnostico__form-wrap--ghl {
  padding: 32px;
  overflow: visible;
}

.diagnostico__form--ghl h3 { margin-bottom: 8px; }
.ghl-form-heading p {
  color: rgba(0,0,0,.58);
  font-size: .92rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

.ghl-form-shell {
  height: 980px;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
}

.ghl-form-shell iframe {
  display: block;
  width: 100%;
  height: 980px;
  min-height: 980px;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.lead-modal.is-open { display: flex; }
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}
.lead-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.4);
}
.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--light);
  color: var(--black);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.lead-modal__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: var(--lime);
  color: var(--black);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.lead-modal h3 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.lead-modal p {
  color: rgba(0,0,0,.62);
  font-size: .92rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.lead-modal__ghl {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 12px;
}
.lead-modal__ghl iframe {
  width: 100%;
  height: 430px;
  min-height: 430px;
  display: block;
}

.lead-modal__skip {
  width: 100%;
  border: 0;
  background: transparent;
  color: rgba(0,0,0,.58);
  font-weight: 700;
  margin-top: 12px;
  cursor: pointer;
  text-decoration: underline;
}
.lead-modal__note {
  margin: 14px 0 0 !important;
  font-size: .74rem !important;
  color: rgba(0,0,0,.45) !important;
  text-align: center;
}

@media (max-width: 768px) {
  .diagnostico__form-wrap--ghl { padding: 20px 14px; }
  .ghl-form-shell { height: 1040px; }
  .ghl-form-shell iframe { height: 1040px; min-height: 1040px; }
  .lead-modal__dialog { padding: 26px 20px; }
  .lead-modal__ghl { height: 455px; }
  .lead-modal__ghl iframe { height: 455px; min-height: 455px; }
}


/* ---------- BLOG INTERNAL PAGES ---------- */
.blog-article-page { background: var(--light); color: var(--black); }
.article-hero {
  padding: calc(var(--header-h) + 72px) 0 72px;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/bg-home.png') center/cover no-repeat;
  opacity: .16;
  filter: grayscale(1);
}
.article-hero::after {
  content: '360°';
  position: absolute;
  right: -4vw;
  bottom: -8vw;
  font-size: clamp(8rem, 24vw, 22rem);
  font-weight: 900;
  color: rgba(220,255,34,.08);
  letter-spacing: -.08em;
  line-height: .8;
}
.article-hero .container { position: relative; z-index: 1; }
.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.article-hero h1 { max-width: 920px; margin-bottom: 20px; }
.article-hero__lead { max-width: 760px; color: rgba(255,255,255,.78); font-size: clamp(1rem,1.7vw,1.18rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; color: rgba(255,255,255,.68); font-size: .92rem; }
.article-meta span { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 8px 12px; }
.article-shell { background: var(--light); padding: 72px 0 96px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 44px; align-items: start; }
.article-content {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.article-content h2 { font-size: clamp(1.45rem, 2.5vw, 2rem); margin: 34px 0 14px; letter-spacing: -.02em; }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { margin: 26px 0 10px; font-size: 1.08rem; font-weight: 850; }
.article-content p { color: #333; margin: 0 0 18px; }
.article-content ul, .article-content ol { list-style: none; margin: 18px 0 24px; display: grid; gap: 12px; }
.article-content li { position: relative; padding-left: 28px; color: #333; line-height: 1.7; }
.article-content li::before { content: '✓'; position: absolute; left: 0; top: 0; font-weight: 900; color: var(--black); }
.article-callout {
  margin: 30px 0;
  padding: 24px;
  border-radius: 20px;
  background: var(--lime);
  color: var(--black);
}
.article-callout strong { display:block; font-size: 1.05rem; margin-bottom: 8px; }
.article-quote {
  margin: 30px 0;
  padding: 26px;
  border-left: 6px solid var(--lime);
  background: #111;
  color: #fff;
  border-radius: 0 20px 20px 0;
}
.article-quote p { color: rgba(255,255,255,.82); margin: 0; }
.article-sidebar { display: grid; gap: 18px; position: sticky; top: calc(var(--header-h) + 24px); }
.article-side-card {
  background: var(--black);
  color: var(--white);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.article-side-card--lime { background: var(--lime); color: var(--black); }
.article-side-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.article-side-card p { color: inherit; opacity: .78; font-size: .95rem; margin-bottom: 18px; }
.article-side-list { display: grid; gap: 10px; margin-top: 16px; }
.article-side-list a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-weight: 800; font-size: .94rem; }
.article-side-card--lime .article-side-list a { border-color: rgba(0,0,0,.15); }
.article-related { margin-top: 48px; }
.article-related h2 { margin-bottom: 22px; }
.article-related__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.article-related__card { background:#fff; border-radius:22px; padding:22px; border:1px solid rgba(0,0,0,.08); transition: transform var(--transition); }
.article-related__card:hover { transform: translateY(-4px); }
.article-related__tag { display:inline-block; background:var(--lime); border-radius:999px; padding:5px 10px; font-size:.68rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; margin-bottom:12px; }
.article-related__card h3 { color:var(--black); font-size:1rem; }
.article-bottom-cta { margin-top: 42px; padding: 32px; border-radius: 24px; background: var(--black); color: var(--white); display: grid; gap: 16px; }
.article-bottom-cta p { color: rgba(255,255,255,.72); margin: 0; }
.article-bottom-cta .btn { justify-self: start; }
@media (max-width: 980px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; grid-template-columns: repeat(2,1fr); }
  .article-related__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .article-hero { padding-top: calc(var(--header-h) + 44px); }
  .article-shell { padding: 44px 0 72px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-meta span { width: 100%; }
}


/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page main { background: var(--white); color: var(--black); }
.legal-hero { padding: 150px 0 60px; background: linear-gradient(180deg, #f6f6f6 0%, #fff 100%); }
.legal-hero__inner { max-width: 860px; }
.legal-hero h1 { font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -.05em; line-height: 1; margin-bottom: 18px; }
.legal-hero p { color: #555; font-size: 1.08rem; line-height: 1.7; }
.legal-content { padding: 40px 0 110px; }
.legal-content__inner { max-width: 860px; margin: 0 auto; }
.legal-card { background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 28px; padding: clamp(28px, 5vw, 58px); box-shadow: 0 20px 70px rgba(0,0,0,.06); }
.legal-card h2 { font-size: 1.35rem; margin: 34px 0 12px; letter-spacing: -.02em; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: #4d4d4d; line-height: 1.8; font-size: .98rem; }
.legal-card ul { margin: 12px 0 0 20px; }
.legal-card strong { color: var(--black); }
.legal-updated { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; padding: 8px 14px; border-radius: 999px; background: var(--lime); color: var(--black); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr; } .legal-hero { padding-top: 120px; } }

/* ============================================================
   AJUSTE FINAL — FUNDO DA SEÇÃO RESULTADOS + TRAVA DO CARROSSEL
   ============================================================ */
.cases {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(220,255,34,.22), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(0,0,0,.06), transparent 28%),
    linear-gradient(180deg, #f7f7f2 0%, #eef0e7 52%, #f7f7f2 100%);
}

.cases::before {
  content: "";
  position: absolute;
  inset: -8% -4%;
  background-image: url("assets/textura-numeros.png");
  background-size: cover;
  background-position: center;
  opacity: .045;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.cases::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  width: min(860px, 82vw);
  height: 300px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(220,255,34,.24), rgba(220,255,34,0) 68%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.cases > .container {
  position: relative;
  z-index: 1;
}

.cases__viewport {
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior: none;
}

.cases__track {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  align-items: stretch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cases__track::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.cases__track .case-card {
  height: auto;
  max-height: none;
}


/* ============================================================
   AJUSTES FINAIS MOBILE — 24/06/2026
   Corrige estouro horizontal, CTAs longos e FAB do WhatsApp.
   ============================================================ */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

main,
.header,
.footer,
section {
  max-width: 100vw;
}

.whatsapp-fab {
  z-index: 10050;
  flex: 0 0 auto;
  line-height: 0;
  font-size: 0;
  isolation: isolate;
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  display: block;
  color: #fff;
  fill: currentColor;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .page,
  main,
  .header,
  .footer,
  section,
  .container,
  .hero,
  .dores,
  .about,
  .metodo,
  .cases,
  .depoimentos,
  .blog,
  .diagnostico,
  .cta-final,
  .article-hero,
  .article-shell,
  .article-content,
  .article-sidebar,
  .article-bottom-cta,
  .article-related {
    max-width: 100vw !important;
  }

  .container {
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .btn,
  .section-cta .btn,
  .hero__actions .btn,
  .cta-final__actions .btn,
  .article-bottom-cta .btn,
  .diagnostico__promise,
  .lead-modal__skip {
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .section-cta,
  .hero__actions,
  .cta-final__actions,
  .article-bottom-cta {
    width: 100%;
    max-width: 100%;
  }

  .section-cta .btn,
  .article-bottom-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .dores .section-cta .btn,
  .about .section-cta .btn,
  .cases .section-cta .btn {
    display: flex;
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .cases__carousel,
  .cases__viewport,
  .cases__track {
    max-width: 100%;
  }

  .cases__track {
    overflow-x: auto;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  .case-card {
    max-width: calc(100vw - 32px) !important;
  }

  .whatsapp-fab {
    width: 58px !important;
    height: 58px !important;
    right: max(18px, env(safe-area-inset-right)) !important;
    bottom: max(22px, env(safe-area-inset-bottom)) !important;
    box-shadow: 0 10px 34px rgba(37,211,102,.48), 0 0 0 10px rgba(37,211,102,.13);
  }

  .whatsapp-fab svg {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 430px) {
  .hero__badge,
  .section-tag,
  .article-kicker {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .btn {
    padding-left: 18px;
    padding-right: 18px;
    line-height: 1.25;
  }

  .whatsapp-fab {
    right: 16px !important;
    bottom: 18px !important;
  }
}
