:root {
  --red: #c80012;
  --red-dark: #8d000c;
  --red-bright: #ff1d2f;
  --ink: #0d0d0f;
  --ink-soft: #18181b;
  --paper: #f5f3ef;
  --white: #ffffff;
  --gray-100: #efefef;
  --gray-200: #dedede;
  --gray-400: #9b9b9f;
  --gray-600: #616166;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .16);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection { color: var(--white); background: var(--red); }

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button, input, select { font: inherit; }
.hero-mobile-break { display: none; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 13px; }

.brand-mark {
  display: inline-grid;
  place-items: center;
  min-width: 62px;
  height: 36px;
  padding: 0 10px;
  border: 2px solid currentColor;
  border-radius: 4px 12px 4px 12px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
}

.brand-mark-light { color: var(--white); }

.brand-tagline { font-size: 11px; font-weight: 600; letter-spacing: .03em; opacity: .78; }

.main-nav { display: flex; gap: 32px; margin-left: auto; }
.main-nav a { position: relative; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--white); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }

.preview-toggle {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.preview-toggle svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.preview-toggle:hover, .preview-toggle:focus-visible { color: #fff; border-color: rgba(255, 255, 255, .48); background: rgba(255, 255, 255, .11); }

.mobile-preview-overlay[hidden] { display: none; }

.mobile-preview-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  grid-template-rows: 58px minmax(0, 1fr);
  place-items: center;
  padding: 0 24px 24px;
  background: rgba(8, 8, 10, .96);
  backdrop-filter: blur(18px);
}

.mobile-preview-toolbar {
  width: min(100%, 620px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a9a9ae;
  font-size: 11px;
}

.mobile-preview-toolbar strong { color: #fff; }

.mobile-preview-toolbar button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid #303035;
  border-radius: 8px;
  color: #fff;
  background: #171719;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-preview-toolbar button span { color: var(--red-bright); font-size: 17px; line-height: 1; }

.mobile-preview-device {
  width: 404px;
  height: min(844px, calc(100vh - 82px));
  overflow: hidden;
  border: 7px solid #242428;
  border-radius: 30px;
  background: #0b0b0d;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
}

.mobile-preview-device iframe { width: 100%; height: 100%; display: block; border: 0; background: var(--paper); }
body.mobile-preview-open { overflow: hidden; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  font-family: "Poppins", Arial, sans-serif;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(255, 29, 47, .45); outline-offset: 3px; }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 12px; }
.button-light { color: var(--ink); background: var(--white); box-shadow: 0 12px 30px rgba(0,0,0,.15); }
.button-light:hover { box-shadow: 0 18px 36px rgba(0,0,0,.22); }
.button-dark { color: var(--white); background: var(--ink); }
.button-red { color: var(--white); background: var(--red); }

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 44%, rgba(255, 59, 71, .22), transparent 28%),
    radial-gradient(circle at 15% 90%, rgba(255, 255, 255, .08), transparent 25%),
    linear-gradient(128deg, #a4000b 0%, #c30011 48%, #850008 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -170px;
  top: 105px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255,255,255,.025), 0 0 0 200px rgba(255,255,255,.018);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero-grid { position: relative; z-index: 2; min-height: 790px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 68px; padding-top: 130px; padding-bottom: 70px; }
.hero-copy { max-width: 660px; }
.eyebrow { display: inline-block; margin-bottom: 18px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow-light { color: rgba(255,255,255,.72); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Poppins", Arial, sans-serif; font-weight: 800; }
h1, h2 { line-height: 1.02; letter-spacing: -.045em; }
h1 { margin-bottom: 28px; font-size: clamp(48px, 5vw, 74px); }
h1 span { color: rgba(255,255,255,.62); }
h2 { margin-bottom: 24px; font-size: clamp(36px, 4vw, 56px); }
h3 { line-height: 1.25; }

.hero-lead { max-width: 580px; margin-bottom: 14px; font-size: clamp(18px, 2vw, 22px); line-height: 1.45; font-weight: 700; }
.hero-support { max-width: 580px; margin-bottom: 28px; color: rgba(255,255,255,.74); font-size: 14px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.text-link-dark { color: var(--ink); }
.hero-proof { display: flex; align-items: center; gap: 10px; margin-top: 28px; color: rgba(255,255,255,.72); font-size: 12px; }
.hero-proof strong { color: var(--white); }
.proof-icon { display: grid; width: 21px; height: 21px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--white); font-size: 11px; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.scan-card { position: relative; z-index: 3; border: 1px solid rgba(255,255,255,.16); background: linear-gradient(145deg, rgba(22,22,25,.96), rgba(8,8,10,.96)); box-shadow: 0 35px 90px rgba(29,0,2,.5); }
.scan-card-main { width: min(100%, 440px); min-height: 460px; padding: 30px; border-radius: 28px; transform: rotate(1.5deg); }
.scan-card-main::after { content: ""; position: absolute; inset: 10px; pointer-events: none; border: 1px solid rgba(255,255,255,.06); border-radius: 21px; }
.scan-topline { display: flex; justify-content: space-between; align-items: center; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.58); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border-radius: 20px; background: rgba(200,0,18,.15); color: #ff8d97; letter-spacing: 0; text-transform: none; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 4px rgba(255,29,47,.12); }
.scan-heading { padding: 38px 0 24px; }
.scan-heading small { display: block; margin-bottom: 10px; color: var(--red-bright); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.scan-heading strong { font-family: "Poppins", Arial, sans-serif; font-size: 41px; line-height: .98; text-transform: uppercase; }
.chart { height: 150px; display: flex; align-items: end; gap: 13px; padding: 15px 16px 0; border-left: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); background: repeating-linear-gradient(to top, transparent 0 37px, rgba(255,255,255,.045) 38px); }
.chart span { flex: 1; height: var(--h); border-radius: 4px 4px 0 0; background: linear-gradient(to top, #343439, #76767d); }
.chart span.alert { background: linear-gradient(to top, var(--red-dark), var(--red-bright)); box-shadow: 0 0 25px rgba(255,29,47,.35); }
.scan-legend { display: flex; justify-content: space-between; padding-top: 17px; color: rgba(255,255,255,.38); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.scan-card-float { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; min-width: 205px; padding: 14px 17px; border-radius: 13px; }
.scan-card-float small, .scan-card-float strong { display: block; }
.scan-card-float small { color: var(--red-bright); font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.scan-card-float strong { font-size: 11px; }
.mini-icon { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 9px; color: var(--red-bright); background: rgba(255,255,255,.04); }
.float-top { top: 78px; right: -30px; }
.float-bottom { bottom: 65px; left: -38px; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.orbit-one { width: 490px; height: 490px; }
.orbit-two { width: 590px; height: 590px; }

.section { padding: 120px 0; }
.section-light { background: var(--paper); }
.section-heading { max-width: 820px; margin-bottom: 56px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 { color: var(--ink); }
.section-heading p { max-width: 650px; margin: 0 auto; color: var(--gray-600); }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--gray-200); border-left: 1px solid var(--gray-200); }
.problem-card { position: relative; min-height: 330px; padding: 38px 34px; border-right: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); background: rgba(255,255,255,.32); transition: background .25s ease, transform .25s ease, box-shadow .25s ease; }
.problem-card:hover { z-index: 2; transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow); }
.problem-card.featured { color: var(--white); background: var(--red); }
.problem-card.featured p, .problem-card.featured .card-number { color: rgba(255,255,255,.7); }
.problem-card.featured .icon-wrap { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.1); }
.card-number { position: absolute; top: 23px; right: 25px; color: #b1b1b4; font-family: "Bebas Neue", sans-serif; font-size: 18px; font-weight: 400; }
.icon-wrap { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 34px; border: 1px solid #e0b8bc; border-radius: 50%; color: var(--red); background: #f7e9ea; }
.icon-wrap svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.problem-card h3 { max-width: 280px; margin-bottom: 14px; font-size: 19px; }
.problem-card p { margin: 0; color: var(--gray-600); font-size: 13px; line-height: 1.75; }

.section-split { overflow: hidden; padding: 0; background: var(--white); }
.split-grid { width: 100%; max-width: none; display: grid; grid-template-columns: 1fr 1fr; }
.split-visual { position: relative; min-height: 760px; display: grid; place-items: center; overflow: hidden; padding: 80px; color: var(--white); background: linear-gradient(145deg, #161619, #09090a); }
.split-visual::before { content: "GDR"; position: absolute; left: -38px; bottom: -90px; color: rgba(255,255,255,.025); font-family: "Bebas Neue", sans-serif; font-size: 360px; font-weight: 400; line-height: 1; }
.statement-card { position: relative; z-index: 2; width: min(100%, 510px); padding: 52px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.055); backdrop-filter: blur(8px); }
.statement-kicker { display: block; margin-bottom: 80px; color: var(--red-bright); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.statement-card > strong { display: block; max-width: 410px; margin-bottom: 20px; font-family: "Poppins", sans-serif; font-size: 54px; line-height: .98; text-transform: uppercase; }
.statement-card > p { color: rgba(255,255,255,.65); font-size: 14px; }
.statement-footer { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 35px; }
.statement-footer span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; color: rgba(255,255,255,.78); font-size: 10px; }
.red-disc { position: absolute; width: 280px; height: 280px; right: -110px; top: -70px; border-radius: 50%; background: var(--red); box-shadow: 0 0 90px rgba(200,0,18,.42); }
.split-copy { align-self: center; max-width: 650px; padding: 100px 7vw; }
.split-copy h2 { font-size: clamp(43px, 4.3vw, 68px); }
.split-copy > p { color: var(--gray-600); font-size: 14px; }
.split-copy blockquote { margin: 32px 0; padding: 7px 0 7px 22px; border-left: 3px solid var(--red); font-size: 15px; font-weight: 700; line-height: 1.6; }

.section-dark { color: var(--white); background: var(--ink); }
.section-heading-dark h2 { color: var(--white); }
.section-heading-dark h2 span { color: #67676d; }
.section-heading-dark p { margin: 0; color: #909095; }
.method-stack { border-top: 1px solid #303035; }
.method-row { display: grid; grid-template-columns: 80px 1.05fr .95fr; gap: 38px; align-items: center; min-height: 265px; padding: 42px 0; border-bottom: 1px solid #303035; }
.method-index { align-self: start; color: var(--red-bright); font-family: "Bebas Neue", sans-serif; font-size: 24px; font-weight: 400; }
.method-label { color: #6e6e74; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.method-copy h3 { margin: 8px 0 14px; font-family: "Poppins", sans-serif; font-size: 34px; text-transform: uppercase; }
.method-copy p { max-width: 520px; margin: 0; color: #929298; font-size: 13px; }
.pill-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-cloud span { padding: 10px 14px; border: 1px solid #343439; border-radius: 40px; color: #c4c4c8; background: #19191c; font-size: 11px; }
.pill-cloud span:nth-child(3n + 1) { border-color: rgba(255,29,47,.35); color: #ff8993; }
.riches { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.riches span { display: flex; align-items: center; gap: 10px; color: #c4c4c8; font-size: 12px; }
.riches i { width: 8px; height: 8px; border: 2px solid var(--red-bright); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,29,47,.08); }
.impact-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.impact-list span { min-height: 115px; display: flex; flex-direction: column; justify-content: space-between; padding: 17px; border: 1px solid #35353a; border-radius: 12px; color: #c5c5ca; background: #18181b; font-size: 10px; }
.impact-list strong { color: var(--red-bright); font-size: 27px; line-height: 1; }

.section-red { color: var(--white); background: var(--red); }
.accompaniment { position: relative; overflow: hidden; }
.accompaniment::after { content: ""; position: absolute; width: 430px; height: 430px; right: -180px; bottom: -260px; border: 80px solid rgba(255,255,255,.06); border-radius: 50%; }
.accompaniment-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.accompaniment h2 { margin-bottom: 0; }
.accompaniment-copy > p { color: rgba(255,255,255,.75); font-size: 15px; }
.command-note { display: flex; align-items: center; gap: 18px; margin-top: 30px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.24); }
.command-note span { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; color: var(--red); background: var(--white); font-size: 22px; }
.command-note strong { line-height: 1.4; }

.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.case-card { min-height: 330px; display: flex; flex-direction: column; padding: 35px; border: 1px solid var(--gray-200); border-radius: 14px; background: var(--white); }
.case-top { display: flex; align-items: center; gap: 12px; color: var(--gray-600); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.case-logo { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--gray-200); border-radius: 50%; color: var(--red); background: var(--paper); font-family: "Bebas Neue", sans-serif; font-size: 18px; }
.case-card > p { margin: auto 0; font-family: "Poppins", sans-serif; font-size: 28px; font-weight: 700; line-height: 1.18; }
.case-result { display: flex; justify-content: space-between; align-items: end; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.case-result span { color: var(--gray-400); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.case-result strong { font-size: 12px; }
.case-card-dark { color: var(--white); border-color: #29292d; background: var(--ink); }
.case-card-dark .case-logo { border-color: #3a3a3f; background: #1d1d20; }
.case-card-dark .case-top, .case-card-dark .case-result span { color: #85858b; }
.case-card-dark .case-result { border-color: #303034; }
.case-card-red { color: var(--white); border-color: var(--red); background: var(--red); }
.case-card-red .case-logo { color: var(--white); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.1); }
.case-card-red .case-top, .case-card-red .case-result span { color: rgba(255,255,255,.65); }
.case-card-red .case-result { border-color: rgba(255,255,255,.25); }
.case-disclaimer { margin: 20px 0 0; color: var(--gray-400); font-size: 10px; text-align: center; }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.faq-heading { position: sticky; top: 50px; align-self: start; }
.faq-heading h2 { font-size: clamp(38px, 4vw, 54px); }
.faq-heading p { max-width: 420px; margin-bottom: 30px; color: var(--gray-600); }
.accordion { border-top: 1px solid var(--gray-200); }
.accordion details { border-bottom: 1px solid var(--gray-200); }
.accordion summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 0; list-style: none; font-size: 15px; font-weight: 700; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; flex: 0 0 24px; width: 24px; height: 24px; border: 1px solid var(--gray-200); border-radius: 50%; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; left: 6px; right: 6px; top: 11px; height: 1px; background: var(--ink); }
.accordion summary span::after { transform: rotate(90deg); transition: transform .2s ease; }
.accordion details[open] summary span { border-color: var(--red); background: var(--red); }
.accordion details[open] summary span::before, .accordion details[open] summary span::after { background: var(--white); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 650px; padding: 0 50px 27px 0; color: var(--gray-600); font-size: 13px; }

.cta-section { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #121214 0%, #09090b 65%, #210004 100%); }
.cta-glow { position: absolute; width: 550px; height: 550px; left: -250px; top: -160px; border-radius: 50%; background: rgba(200,0,18,.3); filter: blur(10px); }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.cta-copy h2 { max-width: 520px; font-size: clamp(42px, 4.8vw, 60px); }
.cta-copy > p { max-width: 520px; color: #9a9aa0; }
.check-list { display: grid; gap: 12px; margin: 30px 0 54px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; color: #d1d1d4; font-size: 13px; }
.check-list span { display: grid; width: 20px; height: 20px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--red-bright); font-size: 10px; }
.cta-signature { display: flex; align-items: center; gap: 14px; color: #7f7f85; font-size: 11px; }

.lead-form { padding: 42px; border: 1px solid #2f2f34; border-radius: 20px; color: var(--ink); background: var(--white); box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.form-heading { margin-bottom: 30px; }
.form-heading span { display: block; margin-bottom: 6px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.form-heading strong { display: block; max-width: 450px; font-family: "Poppins", sans-serif; font-size: 28px; line-height: 1.12; letter-spacing: -.03em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-identity { grid-template-columns: .78fr 1fr 1.22fr; }
.lead-form label { display: block; margin-bottom: 17px; }
.lead-form label > span { display: block; margin-bottom: 7px; color: #515156; font-size: 10px; font-weight: 700; }
.lead-form input, .lead-form select { width: 100%; min-height: 49px; padding: 0 14px; border: 1px solid #dedee1; border-radius: 7px; color: var(--ink); background: #fafafa; font-size: 12px; }
.lead-form input::placeholder { color: #aaaab0; }
.lead-form input:focus, .lead-form select:focus { border-color: var(--red); outline: 3px solid rgba(200,0,18,.08); }
.lead-form .consent { display: flex; align-items: center; gap: 10px; margin: 2px 0 19px; }
.lead-form .consent input { flex: 0 0 16px; width: 16px; height: 16px; min-height: 16px; margin: 0; accent-color: var(--red); }
.lead-form .consent span { margin: 0; color: #7c7c82; font-size: 9px; line-height: 1.5; }
.form-submit { width: 100%; }
.lead-form > small { display: block; margin-top: 12px; color: #a1a1a6; font-size: 8px; text-align: center; }

.site-footer { padding: 42px 0; color: var(--white); background: #050506; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 50px; }
.footer-inner p { max-width: 460px; margin: 0; justify-self: center; color: #77777d; font-size: 11px; text-align: center; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-meta > span { color: #5e5e64; font-size: 9px; }
.footer-instagram { display: inline-flex; align-items: center; gap: 8px; color: #929298; font-size: 10px; font-weight: 600; transition: color .2s ease; }
.footer-instagram svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer-instagram .instagram-dot { fill: currentColor; stroke: none; }
.footer-instagram:hover, .footer-instagram:focus-visible { color: var(--white); }

.thank-you-page { min-height: 100vh; display: grid; place-items: center; padding: 40px 0; overflow: hidden; color: var(--white); background: radial-gradient(circle at 75% 20%, rgba(200,0,18,.45), transparent 30%), #0a0a0c; }
.thank-you-card { position: relative; width: min(calc(100% - 40px), 820px); padding: 64px 72px 42px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.04); box-shadow: var(--shadow); text-align: center; }
.thank-you-card::before { content: "✓"; display: grid; width: 70px; height: 70px; place-items: center; margin: 0 auto 32px; border-radius: 50%; color: var(--white); background: var(--red); font-size: 30px; }
.thank-you-card h1 { margin-bottom: 22px; font-size: clamp(54px, 8vw, 82px); }
.thank-you-card p { max-width: 580px; margin: 0 auto 30px; color: #a9a9af; }
.thank-you-card .brand { position: absolute; left: 30px; top: 30px; }
.thank-you-team { width: min(100%, 610px); height: 240px; margin: -2px auto 28px; overflow: hidden; border-radius: 18px; background: radial-gradient(circle at 78% 70%, rgba(200,0,18,.28), transparent 38%), rgba(255,255,255,.025); }
.thank-you-team img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center bottom; }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 155px; }
  .hero-copy { max-width: 740px; }
  .hero-visual { min-height: 570px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; }
  .split-visual { min-height: 630px; }
  .split-copy { max-width: 820px; padding: 90px 40px; }
  .method-row { grid-template-columns: 60px 1fr; }
  .method-row > :last-child { grid-column: 2; }
  .accompaniment-grid, .cta-grid { gap: 60px; }
  .faq-grid { gap: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner p { display: none; }
  .footer-meta { align-items: flex-end; text-align: right; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .main-nav, .header-inner > .button, .preview-toggle { display: none; }
  .header-inner { min-height: 72px; }
  .section { padding: 82px 0; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; gap: 42px; padding-top: 125px; padding-bottom: 80px; }
  h1 { font-size: clamp(43px, 12vw, 56px); }
  h2 { font-size: clamp(34px, 10vw, 46px); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 17px; }
  .hero-actions .text-link { justify-content: center; }
  .hero-visual { min-height: 470px; }
  .scan-card-main { min-height: 420px; padding: 24px; }
  .scan-heading strong { font-size: 34px; }
  .float-top { top: 40px; right: -9px; }
  .float-bottom { left: -5px; bottom: 25px; }
  .orbit-one { width: 400px; height: 400px; }
  .orbit-two { width: 490px; height: 490px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 290px; }
  .split-visual { min-height: 540px; padding: 40px 20px; }
  .statement-card { padding: 35px 28px; }
  .statement-kicker { margin-bottom: 65px; }
  .statement-card > strong { font-size: 44px; }
  .split-copy { padding: 75px 22px; }
  .method-row { grid-template-columns: 38px 1fr; gap: 18px; padding: 34px 0; }
  .impact-list { grid-template-columns: 1fr; }
  .impact-list span { min-height: 90px; }
  .accompaniment-grid, .faq-grid, .cta-grid { grid-template-columns: 1fr; gap: 45px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 300px; }
  .faq-heading { position: static; }
  .lead-form { padding: 30px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row-identity { grid-template-columns: 1fr; }
  .footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .footer-meta { align-items: center; text-align: center; }
  .thank-you-card { padding: 105px 24px 44px; }
  .thank-you-team { height: 190px; margin-bottom: 24px; border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Refinamento exclusivo da experiência mobile */
@media (max-width: 760px) {
  .hero {
    padding-top: 78px;
    padding-bottom: 24px;
  }

  .hero-shell .hero-grid {
    gap: 10px;
    padding: 14px 18px 20px;
  }

  .hero-shell .hero-visual {
    order: 1;
    height: 168px;
    margin: 0;
  }

  .hero-shell .hero-visual > img {
    object-position: center bottom;
  }

  .hero-shell .hero-copy {
    order: 2;
  }

  .hero-mobile-break { display: block; }

  .hero-shell .hero-copy h1 {
    max-width: none;
    margin-bottom: 13px;
    font-size: clamp(28px, 7.5vw, 30px);
    line-height: 1.04;
    letter-spacing: -.052em;
  }

  .hero-shell .hero-lead {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.48;
  }

  .hero-shell .hero-support { display: none; }

  .hero-shell .hero-actions {
    margin-top: 18px;
  }

  .hero-shell .button-hero-figma {
    min-height: 50px;
    font-size: 13px;
  }

  #gdr .consultants-layout {
    min-height: 0;
    display: block;
    padding-block: 58px;
  }

  #gdr .consultants-media {
    display: none;
  }

  #gdr .consultants-copy {
    width: 100%;
  }

  #gdr .consultants-copy h2 {
    font-size: clamp(34px, 9.5vw, 42px);
  }

  .results-video-showcase .testimonial-carousel {
    position: relative;
    display: block;
    overflow: hidden;
  }

  .results-video-showcase .testimonial-carousel::after {
    display: none;
  }

  .results-video-showcase .testimonial-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    padding: 8px;
  }

  .results-video-showcase .testimonial-media .testimonial-video-trigger {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    touch-action: pan-y;
  }

  .results-video-showcase .testimonial-content {
    min-height: 310px;
    justify-content: flex-start;
    padding: 88px 24px 26px;
  }

  .results-video-showcase .testimonial-footer {
    position: absolute;
    z-index: 7;
    top: calc((100vw - 30px) * .625 + 1px);
    right: 8px;
    left: 8px;
    width: auto;
    height: 70px;
    display: block;
    margin: 0;
    padding: 8px 0;
    overflow: hidden;
    border: 0;
    background: #18191c;
  }

  .results-video-showcase .testimonial-logo-nav {
    height: 54px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 4px;
    overflow: hidden;
  }

  .results-video-showcase .testimonial-logo-nav button,
  .results-video-showcase .testimonial-logo-nav button.active {
    width: 100%;
    min-width: 0;
    height: 54px;
    border-radius: 6px;
  }

  .results-video-showcase .slider-status {
    display: none;
  }

  .results-video-showcase .slider-controls {
    position: absolute;
    z-index: 8;
    top: calc(((100vw - 30px) * .625) / 2 - 18px);
    right: 15px;
    left: 15px;
    width: auto;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    pointer-events: none;
  }

  .results-video-showcase .slider-button,
  .results-video-showcase .slider-button:last-child {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 50%;
    color: #fff;
    background: rgba(10,10,12,.34);
    backdrop-filter: blur(6px);
    pointer-events: auto;
  }

  .cta-section {
    padding-block: 58px 64px;
  }

  .cta-section .cta-grid {
    gap: 30px;
  }

  .cta-section .cta-copy {
    order: 1;
    text-align: center;
  }

  .cta-section .cta-copy h2 {
    max-width: 350px;
    margin-inline: auto;
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.05;
  }

  .cta-section .cta-copy > p {
    margin-inline: auto;
    font-size: 13px;
    line-height: 1.65;
  }

  .cta-section .cta-detail {
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 18px;
  }

  .cta-section .lead-form {
    order: 2;
    padding: 25px 18px 22px;
    border-radius: 15px;
    box-shadow: 0 22px 60px rgba(0,0,0,.34);
  }

  .lead-form .form-heading {
    margin-bottom: 24px;
    text-align: center;
  }

  .lead-form .form-heading strong {
    max-width: 290px;
    margin-inline: auto;
    font-size: 21px;
    line-height: 1.18;
    text-transform: none;
  }

  .lead-form .form-heading small {
    margin-top: 7px;
    font-size: 10px;
  }

  .lead-form label {
    margin-bottom: 13px;
  }

  .lead-form label > span {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .lead-form input,
  .lead-form select {
    min-height: 52px;
    border-radius: 8px;
    font-size: 13px;
  }

  .lead-form .consent {
    align-items: flex-start;
    gap: 10px;
    margin: 5px 0 18px;
  }

  .lead-form .consent input {
    margin-top: 2px;
  }

  .lead-form .consent span {
    font-size: 10px;
    line-height: 1.45;
    text-align: left;
  }

  .lead-form .form-submit {
    min-height: 52px;
    justify-content: center;
    font-size: 13px;
  }
}

/* Página de agradecimento em formato hero */
.thank-you-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: auto;
  background:
    radial-gradient(circle at 82% 48%, rgba(200,0,18,.2), transparent 34%),
    #070708;
}

.thank-you-hero {
  position: relative;
  isolation: isolate;
  width: min(100%, 1180px);
  min-height: min(720px, calc(100svh - 48px));
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: #09090b;
  box-shadow: 0 40px 100px rgba(0,0,0,.44);
}

.thank-you-hero > .brand {
  position: absolute;
  z-index: 4;
  top: 34px;
  left: 42px;
}

.thank-you-visual {
  position: absolute;
  z-index: -1;
  inset: 0;
  margin: 0;
}

.thank-you-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #09090b 0%, rgba(9,9,11,.97) 28%, rgba(9,9,11,.68) 48%, rgba(9,9,11,.08) 72%);
}

.thank-you-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.thank-you-copy {
  width: 52%;
  padding: 126px 24px 72px 64px;
  color: #fff;
}

.thank-you-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: #d4d4d7;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.thank-you-status span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 16px;
}

.thank-you-copy h1 {
  max-width: 570px;
  margin: 0 0 24px;
  font-size: clamp(54px, 5.7vw, 78px);
  line-height: .98;
  letter-spacing: -.06em;
}

.thank-you-copy p {
  max-width: 510px;
  margin: 0 0 32px;
  color: #b7b7bc;
  font-size: 14px;
  line-height: 1.75;
}

.thank-you-copy .button {
  min-height: 54px;
  gap: 18px;
  padding-inline: 22px;
}

@media (max-width: 760px) {
  .thank-you-page { padding: 12px; }

  .thank-you-hero {
    min-height: calc(100svh - 24px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
  }

  .thank-you-hero > .brand {
    top: 24px;
    left: 24px;
  }

  .thank-you-copy {
    width: 100%;
    padding: 104px 24px 20px;
  }

  .thank-you-copy h1 {
    max-width: 390px;
    font-size: clamp(45px, 14vw, 60px);
  }

  .thank-you-copy p {
    margin-bottom: 26px;
    font-size: 13px;
  }

  .thank-you-visual {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 300px;
    order: 2;
    overflow: hidden;
  }

  .thank-you-visual::after {
    background: linear-gradient(180deg, #09090b 0%, transparent 30%);
  }

  .thank-you-visual img {
    object-position: 68% center;
  }
}

/* Direção editorial GDR */
.brand-logo {
  width: 78px;
  height: auto;
  object-fit: contain;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(48px, 5.2vw, 74px);
}

.hero-editorial {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 35px 40px 0;
}

.editorial-panel {
  position: relative;
  width: min(100%, 455px);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 42px 42px 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 3px;
  background: #101012;
  box-shadow: 28px 28px 0 rgba(58, 0, 4, .45);
  transform: rotate(-1.5deg);
}

.editorial-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--red-bright);
}

.panel-logo {
  width: 64px;
  height: auto;
  margin-bottom: 72px;
  opacity: .92;
}

.panel-question {
  margin-bottom: 34px;
  color: #77777d;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 43px;
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.panel-question strong { color: var(--white); font-weight: 900; }

.panel-diagnosis {
  margin: auto 0 26px;
  padding: 0;
  border-top: 1px solid #35353a;
  list-style: none;
}

.panel-diagnosis li {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid #35353a;
  color: var(--white);
}

.panel-diagnosis span {
  color: var(--red-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.panel-diagnosis strong { font-size: 12px; font-weight: 600; }

.panel-note {
  max-width: 310px;
  margin: 0;
  color: #96969c;
  font-size: 11px;
  line-height: 1.6;
}

.editorial-caption {
  position: absolute;
  right: -122px;
  bottom: 80px;
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.section-heading-dark {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  column-gap: 70px;
  max-width: none;
  align-items: end;
}

.section-heading-dark .eyebrow { grid-column: 1 / -1; }
.section-heading-dark h2 { margin: 0; }
.section-heading-dark p { max-width: 470px; padding-bottom: 7px; font-size: 14px; }

.method-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 70px 0 0;
  padding: 0;
  border-top: 1px solid #3a3a3f;
  border-bottom: 1px solid #3a3a3f;
  list-style: none;
}

.method-flow li {
  min-height: 210px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-content: center;
  padding: 34px;
  border-right: 1px solid #3a3a3f;
}

.method-flow li:last-child { border-right: 0; }
.method-flow > li > span { color: var(--red-bright); font-family: "Bebas Neue", sans-serif; font-size: 22px; font-weight: 400; }
.method-flow strong { display: block; margin-bottom: 12px; font-family: "Poppins", sans-serif; font-size: 24px; line-height: 1.08; letter-spacing: -.03em; text-transform: uppercase; }
.method-flow p { margin: 0; color: #8f8f95; font-size: 12px; line-height: 1.65; }

.case-list { border-top: 1px solid #cfcfd2; }

.case-row {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
  min-height: 150px;
  padding: 25px 0;
  border-bottom: 1px solid #cfcfd2;
}

.case-row > div { display: grid; grid-template-columns: 42px 1fr; align-items: baseline; }
.case-row span { color: var(--red); font-family: "Bebas Neue", sans-serif; font-size: 19px; font-weight: 400; }
.case-row h3 { margin: 0; font-family: "Poppins", sans-serif; font-size: 25px; letter-spacing: -.035em; text-transform: uppercase; }
.case-row p { max-width: 560px; margin: 0; color: var(--gray-600); font-size: 15px; }

.cta-detail {
  max-width: 510px;
  margin: 30px 0 54px;
  padding-top: 24px;
  border-top: 1px solid #35353a;
  color: #b3b3b8;
  font-size: 13px;
}

.manifesto-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  padding: 0 30px;
}

.manifesto-panel img { width: 92px; margin-bottom: 110px; }
.manifesto-panel > span { display: block; margin-bottom: 18px; color: var(--red-bright); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.manifesto-panel strong { display: block; max-width: 480px; font-family: "Poppins", sans-serif; font-size: 50px; line-height: 1; letter-spacing: -.05em; text-transform: uppercase; }
.manifesto-panel p { margin: 28px 0 0; color: #909096; font-size: 13px; }

@media (max-width: 1020px) {
  .hero-editorial { min-height: 580px; padding-right: 0; }
  .section-heading-dark { grid-template-columns: 1fr; gap: 20px; }
  .section-heading-dark .eyebrow { grid-column: auto; }
  .method-flow li { padding: 26px 20px; }
}

@media (max-width: 760px) {
  .brand-logo { width: 68px; }
  .hero-copy h1 { font-size: clamp(41px, 11.6vw, 52px); letter-spacing: -.055em; }
  .hero-editorial { min-height: 545px; padding: 20px 8px 30px; }
  .editorial-panel { min-height: 490px; padding: 34px 28px 30px; box-shadow: 14px 14px 0 rgba(58, 0, 4, .45); }
  .panel-logo { margin-bottom: 58px; }
  .panel-question { font-size: 38px; }
  .editorial-caption { display: none; }
  .method-flow { grid-template-columns: 1fr; margin-top: 48px; }
  .method-flow li { min-height: 150px; border-right: 0; border-bottom: 1px solid #3a3a3f; }
  .method-flow li:last-child { border-bottom: 0; }
  .case-row { grid-template-columns: 1fr; gap: 16px; min-height: 0; padding: 30px 0; }
  .case-row p { padding-left: 42px; }
  .cta-detail { margin-bottom: 42px; }
  .manifesto-panel { padding: 0 10px; }
  .manifesto-panel img { margin-bottom: 80px; }
  .manifesto-panel strong { font-size: 46px; }
}

/* Fotografias reais da marca */
.split-visual {
  align-items: end;
  background: linear-gradient(150deg, #760009 0%, #bb0010 60%, #e00014 100%);
}

.split-visual::before {
  left: -20px;
  bottom: -70px;
  color: rgba(255, 255, 255, .045);
}

.team-photo {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  height: 680px;
  margin: 0;
  display: flex;
  align-items: end;
  justify-content: center;
}

.team-photo img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 45px rgba(46, 0, 4, .35));
}

.team-photo figcaption {
  position: absolute;
  left: 0;
  top: 20px;
  max-width: 285px;
  padding-left: 18px;
  border-left: 3px solid var(--white);
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}

.method-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid #3a3a3f;
  border-bottom: 1px solid #3a3a3f;
}

.method-photo {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid #3a3a3f;
}

.method-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(9, 9, 10, .82), transparent 46%);
}

.method-photo img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(1) contrast(1.08);
}

.method-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 30px;
  max-width: 380px;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  line-height: 1.55;
}

.method-layout .method-flow {
  grid-template-columns: 1fr;
  margin: 0;
  border: 0;
}

.method-layout .method-flow li {
  min-height: 180px;
  padding: 34px 45px;
  border-right: 0;
  border-bottom: 1px solid #3a3a3f;
}

.method-layout .method-flow li:last-child { border-bottom: 0; }

/* Depoimentos — composição editorial */
#resultados { background: #ebeae7; }

.testimonial-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 38px;
}

.testimonial-heading-row .section-heading { max-width: 680px; margin: 0; }
.testimonial-heading-row .section-heading h2 { margin-bottom: 16px; font-size: clamp(36px, 4vw, 54px); }
.testimonial-intro { max-width: 620px !important; margin: 0 !important; color: #65656a !important; font-size: 14px; line-height: 1.7; }

.slider-controls { display: flex; gap: 8px; padding-bottom: 7px; }
.slider-label { display: none; }

.slider-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--white);
  background: var(--ink);
  font-size: 20px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}

.testimonial-carousel { outline: none; }
.testimonial-viewport { overflow: hidden; border: 1px solid #d5d3cf; background: var(--white); box-shadow: 0 28px 70px rgba(23, 23, 26, .1); }

.testimonial-track {
  display: flex;
  transition: transform .55s cubic-bezier(.22, .7, .24, 1);
  will-change: transform;
}

.testimonial-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 450px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: var(--white);
}

.testimonial-slide figure {
  position: relative;
  min-height: 450px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
}

.testimonial-slide figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(200, 0, 18, .16), transparent 24%);
  pointer-events: none;
}

.testimonial-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.03);
}

.testimonial-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 62px 46px;
  color: var(--ink);
}

.testimonial-content::before {
  content: "";
  width: 52px;
  height: 4px;
  margin-bottom: 34px;
  background: var(--red);
}

.testimonial-content h3 {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.testimonial-content p {
  max-width: 570px;
  margin: 0;
  color: #29292d;
  font-family: "Poppins", sans-serif;
  font-size: clamp(23px, 2.5vw, 35px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -.035em;
}

.testimonial-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 34px;
  border-top: 1px solid #deddd9;
  color: #77777c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.testimonial-card-footer strong {
  color: var(--red);
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .08em;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
}

.slider-dots { display: flex; align-items: center; gap: 9px; }

.slider-dots button {
  width: 32px;
  height: 2px;
  padding: 0;
  border: 0;
  background: #c9c9cc;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.slider-dots button.active { width: 58px; background: var(--red); }

.slider-status {
  color: var(--gray-600);
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: .08em;
}

@media (max-width: 1020px) {
  .team-photo { height: 590px; }
  .team-photo img { max-height: 555px; }
  .method-layout { grid-template-columns: .8fr 1.2fr; }
  .testimonial-slide { grid-template-columns: 1fr 1fr; }
  .testimonial-content { padding: 44px; }
}

@media (max-width: 760px) {
  .split-visual { min-height: 590px; padding: 45px 15px 0; }
  .team-photo { height: 545px; }
  .team-photo img { max-height: 480px; }
  .team-photo figcaption { top: 0; max-width: 250px; }
  .method-layout { grid-template-columns: 1fr; margin-top: 48px; }
  .method-photo { min-height: 380px; border-right: 0; border-bottom: 1px solid #3a3a3f; }
  .method-photo img { min-height: 380px; }
  .method-layout .method-flow li { min-height: 150px; padding: 28px 24px; }
  .testimonial-heading-row { align-items: end; gap: 20px; margin-bottom: 32px; }
  .testimonial-heading-row .section-heading h2 { font-size: 36px; }
  .testimonial-intro { font-size: 13px; }
  .slider-button { width: 44px; height: 44px; }
  .testimonial-slide { min-height: 590px; grid-template-columns: 1fr; grid-template-rows: auto 265px; }
  .testimonial-slide figure { min-height: 265px; grid-row: 2; clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%); }
  .testimonial-content { min-height: 325px; padding: 34px 28px 28px; }
  .testimonial-content::before { margin-bottom: 22px; }
  .testimonial-content h3 { margin-bottom: 14px; font-size: 13px; }
  .testimonial-content p { font-size: 22px; }
  .testimonial-card-footer { margin-top: 28px; padding-top: 20px; }
}

/* Consultores — composição editorial */
.consultants-showcase {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: #070708;
}

.consultants-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.consultants-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 8, .98) 0%, rgba(7, 7, 8, .92) 26%, rgba(7, 7, 8, .32) 52%, rgba(7, 7, 8, 0) 72%),
    linear-gradient(0deg, rgba(7, 7, 8, .38), transparent 34%);
  pointer-events: none;
}

.consultants-layout {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding-block: 100px;
}

.consultants-copy { width: min(43%, 555px); }

.consultants-copy h2 {
  margin: 22px 0 24px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: none;
}

.consultants-copy h2 span { color: var(--red-bright); }

.consultants-copy > p {
  max-width: 500px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
  line-height: 1.7;
}

.consultants-note {
  display: grid;
  gap: 5px;
  max-width: 455px;
  margin-bottom: 34px;
  padding: 16px 18px;
  border-left: 3px solid var(--red-bright);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
}

.consultants-note strong {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.consultants-note span {
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1020px) {
  .consultants-showcase,
  .consultants-layout { min-height: 760px; }
  .consultants-art { object-position: 56% center; }
  .consultants-copy { width: 48%; }
  .consultants-shade {
    background: linear-gradient(90deg, rgba(7, 7, 8, .98) 0%, rgba(7, 7, 8, .85) 42%, rgba(7, 7, 8, .16) 70%);
  }
}

/* Refinamento editorial e responsivo */
.site-header {
  position: fixed;
  background: rgba(11, 11, 13, .72);
  backdrop-filter: blur(14px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 13, .96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
}

.button {
  border-radius: 999px;
  letter-spacing: -.01em;
}

.button-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  flex: 0 0 32px;
  place-items: center;
  margin-right: -12px;
  border-radius: 50%;
  font-size: 15px;
  transition: transform .2s ease;
}

.button:hover .button-icon { transform: translate(2px, -2px); }

.button-hero-primary,
.button-dark-arrow {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(200, 0, 18, .28);
}

.button-hero-primary .button-icon,
.button-dark-arrow .button-icon {
  color: var(--red);
  background: var(--white);
}

.button-hero-secondary {
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  background: rgba(255, 255, 255, .04);
}

.button-hero-secondary .button-icon {
  background: rgba(255, 255, 255, .12);
}

.hero {
  min-height: 0;
  color: var(--white);
  background: #0b0b0d;
}

.hero::before,
.hero::after,
.hero-noise { display: none; }

.hero-grid {
  min-height: 700px;
  grid-template-columns: minmax(430px, .86fr) minmax(520px, 1.14fr);
  gap: 34px;
  padding-top: 112px;
  padding-bottom: 38px;
}

.hero-copy {
  z-index: 2;
  max-width: 600px;
}

.hero-copy h1 {
  max-width: 590px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.1vw, 70px);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero-copy h1 span { color: var(--red-bright); }

.hero-lead {
  max-width: 545px;
  margin-bottom: 10px;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.45;
}

.hero-support {
  max-width: 535px;
  margin-bottom: 26px;
  color: #a5a5aa;
  font-size: 13px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-actions .button { min-height: 58px; padding-inline: 24px; font-size: 12px; }
.hero-actions .button-hero-secondary { padding-left: 20px; }

.hero-proof {
  margin-top: 24px;
  color: #8c8c91;
}

.hero-visual {
  position: relative;
  min-height: 0;
  width: calc(100% + max(20px, (100vw - var(--container)) / 2));
  height: 570px;
  margin: 0;
  align-self: end;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0b0b0d 0%, transparent 23%), linear-gradient(0deg, rgba(11,11,13,.82), transparent 28%);
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 22px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
}

.hero-visual figcaption strong {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
}

.client-logos {
  min-height: 128px;
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 34px;
  border-top: 1px solid #29292d;
}

.client-logos > p {
  margin: 0;
  color: #8f8f94;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.client-logo-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: center;
  gap: 20px;
}

.client-logo-list img {
  width: 100%;
  max-width: 92px;
  max-height: 42px;
  margin-inline: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.7);
  opacity: .72;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.client-logo-list img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

.section { padding-block: 88px; }
.section-heading { margin-bottom: 38px; }

#problemas .section-heading h2 { font-size: clamp(36px, 4.2vw, 54px); }

.problem-card {
  min-height: 245px;
  padding: 28px 28px 26px;
}

.problem-card h3 { margin-bottom: 10px; font-size: 17px; }
.problem-card p { font-size: 12px; line-height: 1.65; }
.problem-card .icon-wrap { width: 48px; height: 48px; margin-bottom: 24px; }

.consultants-showcase {
  min-height: 0;
  overflow: hidden;
  color: var(--white);
  background: #111113;
}

.consultants-layout {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 64px;
  padding-block: 72px;
}

.consultants-media {
  position: relative;
  height: 472px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px 54px 4px 4px;
  background: #222226;
}

.consultants-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(13, 13, 15, .68));
  pointer-events: none;
}

.consultants-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 27%;
}

.consultants-copy { width: auto; }

.consultants-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(38px, 4vw, 54px);
}

.consultants-note {
  max-width: 100%;
  backdrop-filter: none;
}

.section-dark { min-height: 0; }

.section-heading-dark {
  grid-template-columns: 1fr .72fr;
  gap: 55px;
  margin-bottom: 38px;
}

.section-heading-dark h2 { font-size: clamp(36px, 4vw, 52px); }

.method-layout {
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: 42px;
  align-items: stretch;
}

.method-photo {
  height: 350px;
  min-height: 0;
  border-radius: 3px 32px 3px 3px;
}

.method-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.method-photo figcaption {
  padding: 18px 20px;
  font-size: 10px;
}

.method-layout .method-flow { min-height: 350px; }
.method-layout .method-flow li { min-height: 0; padding: 22px 22px; }
.method-flow strong { margin-bottom: 7px; font-size: 20px; text-transform: none; }
.method-flow p { line-height: 1.5; }

.accompaniment-grid { gap: 68px; }
.accompaniment h2 { font-size: clamp(36px, 4.1vw, 52px); }

#resultados { overflow: hidden; }

.testimonial-heading-row { margin-bottom: 30px; }
.testimonial-heading-row .section-heading h2 { font-size: clamp(36px, 4vw, 52px); }

.slider-controls { gap: 8px; }

.slider-button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 28px rgba(13, 13, 15, .18);
}

.slider-button:hover { color: var(--white); background: var(--red); }

.testimonial-carousel {
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.testimonial-carousel.is-dragging { cursor: grabbing; }
.testimonial-carousel.is-dragging * { pointer-events: none; }
.testimonial-track { will-change: transform; }

.testimonial-slide { min-height: 440px; grid-template-columns: .9fr 1.1fr; }
.testimonial-slide figure { min-height: 440px; }
.testimonial-content { padding: 54px 48px; }
.testimonial-content h3 { font-size: clamp(24px, 3vw, 39px); }
.testimonial-content p { font-size: clamp(18px, 2.1vw, 27px); }
.testimonial-card-footer { justify-content: flex-start; }
.testimonial-card-footer strong { display: none; }

.testimonial-footer { padding-inline: 4px; }

.swipe-hint {
  margin: -31px 94px 0 0;
  color: #8d8d92;
  font-size: 9px;
  text-align: right;
  pointer-events: none;
}

.faq-grid { grid-template-columns: .82fr 1.18fr; gap: 80px; }
.faq-heading { top: 105px; }
.faq-heading .button { min-height: 56px; padding-inline: 22px; }

.accordion details {
  border-color: #d8d8dc;
  transition: background .2s ease, padding .2s ease;
}

.accordion details[open] {
  padding-inline: 20px;
  background: #f5f3ef;
}

.cta-grid {
  grid-template-columns: 1.08fr .92fr;
  grid-template-areas: "form copy";
  gap: 72px;
}

.lead-form { grid-area: form; }
.cta-copy { grid-area: copy; }
.cta-copy h2 { font-size: clamp(38px, 4.5vw, 55px); }

.reveal-ready {
  --reveal-x: 0px;
  --reveal-y: 28px;
  --reveal-scale: .985;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity .72s ease var(--reveal-delay, 0ms),
    transform .78s cubic-bezier(.22,.7,.2,1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.hero-copy.reveal-ready,
.lead-form.reveal-ready { --reveal-x: -34px; --reveal-y: 0px; --reveal-scale: 1; }

.hero-visual.reveal-ready,
.cta-copy.reveal-ready { --reveal-x: 34px; --reveal-y: 0px; --reveal-scale: 1; }

.section-sweep.reveal-ready {
  overflow: clip;
  opacity: 1;
  transform: none;
  clip-path: none;
  will-change: auto;
}

.section-sweep.reveal-ready > .container {
  opacity: 0;
  transition:
    opacity .34s ease,
    transform .92s cubic-bezier(.22, .72, .18, 1),
    clip-path .92s cubic-bezier(.22, .72, .18, 1);
  will-change: opacity, transform, clip-path;
}

.section-sweep-from-right.reveal-ready > .container {
  transform: translate3d(76px, 0, 0);
  clip-path: inset(0 0 0 100%);
}

.section-sweep-from-left.reveal-ready > .container {
  transform: translate3d(-76px, 0, 0);
  clip-path: inset(0 100% 0 0);
}

.section-sweep.reveal-ready.is-visible > .container {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  clip-path: inset(0);
  will-change: auto;
}

.client-logos.reveal-ready { --reveal-y: 16px; --reveal-scale: .992; }
.problem-card.reveal-ready { --reveal-y: 34px; --reveal-scale: .972; }
.problem-cta.reveal-ready { --reveal-y: 20px; --reveal-scale: .99; }
.method-story.reveal-ready { --reveal-y: 38px; --reveal-scale: .985; }
.method-story-steps li.reveal-ready { --reveal-x: 24px; --reveal-y: 0px; --reveal-scale: 1; }
.testimonial-carousel.reveal-ready { --reveal-y: 34px; --reveal-scale: .99; }
.testimonial-cta.reveal-ready { --reveal-y: 20px; --reveal-scale: .99; }

@media (max-width: 760px) {
  .hero-copy.reveal-ready,
  .hero-visual.reveal-ready,
  .consultants-media.reveal-ready,
  .consultants-copy.reveal-ready,
  .faq-heading.reveal-ready,
  .accordion details.reveal-ready,
  .lead-form.reveal-ready,
  .cta-copy.reveal-ready,
  .method-story-steps li.reveal-ready {
    --reveal-x: 0px;
    --reveal-y: 24px;
  }

  .section-sweep-from-right.reveal-ready > .container { transform: translate3d(34px, 0, 0); }
  .section-sweep-from-left.reveal-ready > .container { transform: translate3d(-34px, 0, 0); }
  .section-sweep.reveal-ready.is-visible > .container { transform: translate3d(0, 0, 0); }
}

@media (max-width: 1020px) {
  .hero-grid {
    min-height: 650px;
    grid-template-columns: .94fr 1.06fr;
    gap: 10px;
  }

  .hero-copy h1 { font-size: clamp(43px, 6vw, 61px); }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 360px; }
  .hero-actions .button { justify-content: space-between; }
  .hero-visual { height: 520px; }

  .client-logos { grid-template-columns: 180px 1fr; }
  .client-logo-list { grid-template-columns: repeat(4, minmax(0, 1fr)); row-gap: 16px; }
  .client-logo-list img { max-height: 32px; }

  .consultants-showcase,
  .consultants-layout { min-height: 0; }

  .consultants-layout { grid-template-columns: 1fr 1fr; gap: 36px; }
  .consultants-media { height: 430px; }

  .method-layout { gap: 28px; }
  .method-layout .method-flow li { padding-inline: 18px; }

  .testimonial-slide,
  .testimonial-slide figure { min-height: 410px; }

  .faq-grid { gap: 48px; }
  .cta-grid { gap: 42px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .site-header { position: absolute; backdrop-filter: none; background: transparent; }
  .header-inner { min-height: 70px; }

  .hero-grid {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 108px;
    padding-bottom: 0;
  }

  .hero-copy { max-width: none; }
  .hero-copy h1 { max-width: 510px; margin-bottom: 18px; font-size: clamp(42px, 12.6vw, 55px); }
  .hero-lead { font-size: 17px; }
  .hero-support { margin-bottom: 22px; }
  .hero-actions { max-width: none; }
  .hero-actions .button { width: 100%; }
  .hero-proof { align-items: flex-start; margin-top: 20px; font-size: 10px; }

  .hero-visual {
    width: calc(100% + 30px);
    height: 325px;
    margin-left: -15px;
  }

  .hero-visual > img { object-position: 59% center; }
  .hero-visual::after { background: linear-gradient(180deg, #0b0b0d 0%, transparent 25%), linear-gradient(0deg, rgba(11,11,13,.8), transparent 35%); }
  .hero-visual figcaption { right: 15px; bottom: 13px; }

  .client-logos {
    min-height: 0;
    display: block;
    padding-block: 28px 32px;
  }

  .client-logos > p { margin-bottom: 22px; text-align: center; }
  .client-logo-list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px 12px; }
  .client-logo-list img { max-width: 68px; max-height: 30px; }

  .section { padding-block: 68px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2,
  #problemas .section-heading h2 { font-size: clamp(34px, 10vw, 44px); }

  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 0; padding: 25px 24px; }
  .problem-card .icon-wrap { margin-bottom: 20px; }

  .consultants-layout {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding-block: 68px;
  }

  .consultants-media { width: 100%; height: 330px; order: 2; border-radius: 3px 30px 3px 3px; }
  .consultants-media img { object-position: 58% center; }
  .consultants-copy { order: 1; }
  .consultants-copy h2 { font-size: clamp(36px, 10vw, 46px); }

  .section-heading-dark { display: block; }
  .section-heading-dark h2 { margin-bottom: 18px; font-size: clamp(34px, 10vw, 44px); }

  .method-layout { display: flex; flex-direction: column; }
  .method-photo { width: 100%; height: 285px; }
  .method-layout .method-flow { min-height: 0; grid-template-columns: 1fr; }
  .method-layout .method-flow li { min-height: 0; padding: 22px 0; }

  .accompaniment-grid { gap: 26px; }
  .accompaniment h2 { font-size: clamp(35px, 10vw, 45px); }

  .testimonial-heading-row { align-items: flex-end; }
  .testimonial-heading-row .section-heading { max-width: calc(100% - 102px); }
  .testimonial-heading-row .section-heading h2 { font-size: clamp(33px, 9vw, 42px); }
  .testimonial-heading-row .section-heading p { display: none; }
  .slider-button { width: 46px; height: 46px; }

  .testimonial-slide {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .testimonial-content { min-height: 300px; padding: 34px 28px; }
  .testimonial-content h3 { font-size: 26px; }
  .testimonial-content p { font-size: 19px; }
  .testimonial-slide figure { min-height: 250px; height: 250px; }
  .testimonial-slide figure::after { clip-path: polygon(0 0, 100% 0, 100% 7%, 0 20%); }
  .testimonial-footer { margin-top: 20px; }
  .swipe-hint { margin: 7px 0 0; text-align: left; }

  .faq-grid { display: block; }
  .faq-heading { position: static; margin-bottom: 34px; }
  .faq-heading .button { width: 100%; justify-content: space-between; }

  .cta-grid {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .lead-form { order: 1; padding: 28px 20px; }
  .cta-copy { order: 2; }
  .cta-copy h2 { font-size: clamp(36px, 10vw, 47px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-ready,
  .reveal-ready.is-visible { opacity: 1; transform: none; transition: none; }
  .testimonial-track { transition: none !important; }
}

@media (max-width: 760px) {
  .consultants-showcase { min-height: 930px; }
  .consultants-art {
    inset: auto 0 0;
    height: 480px;
    object-position: 66% bottom;
  }
  .consultants-shade {
    background: linear-gradient(180deg, #070708 0%, #070708 45%, rgba(7, 7, 8, .92) 58%, rgba(7, 7, 8, .04) 84%);
  }
  .consultants-layout {
    min-height: 930px;
    align-items: flex-start;
    padding-top: 82px;
  }
  .consultants-copy { width: 100%; }
  .consultants-copy h2 { font-size: clamp(36px, 10vw, 46px); }
  .consultants-copy > p { max-width: 95%; font-size: 14px; }
  .consultants-note { max-width: 100%; margin-bottom: 28px; }
  .consultants-copy .button { width: 100%; }
}

/* Hierarquia de conversão */
.hero-click-trigger {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  line-height: 1.45;
}

.proof-strip {
  color: var(--white);
  border-top: 1px solid #2d2d32;
  border-bottom: 1px solid #2d2d32;
  background: #111113;
}

.proof-strip-grid {
  min-height: 150px;
  display: grid;
  grid-template-columns: 245px 1fr;
  align-items: center;
  gap: 48px;
  padding-block: 26px;
}

.proof-strip p { margin: 0; }

.proof-strip p span {
  display: block;
  margin-bottom: 6px;
  color: var(--red-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.proof-strip p strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.proof-strip ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-strip li {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 20px;
  border-left: 1px solid #343439;
}

.proof-strip li strong {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  line-height: 1.35;
}

.proof-strip li span {
  color: #85858b;
  font-size: 10px;
  line-height: 1.45;
}

.form-heading small {
  display: block;
  margin-top: 8px;
  color: #85858b;
  font-size: 10px;
  font-weight: 600;
}

.mobile-sticky-cta { display: none; }

@media (max-width: 1020px) {
  .proof-strip-grid { grid-template-columns: 190px 1fr; gap: 24px; }
  .proof-strip li { padding-inline: 14px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 66px; }
  .hero-click-trigger { text-align: center; }
  .proof-strip-grid { display: block; padding-block: 34px; }
  .proof-strip p { margin-bottom: 25px; }
  .proof-strip ul { grid-template-columns: 1fr 1fr; }
  .proof-strip li { min-height: 76px; padding: 12px 14px; border-top: 1px solid #343439; }
  .proof-strip li:nth-child(odd) { border-left: 0; }
  .consultants-art { object-position: 68% bottom; }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 3px;
    color: var(--white);
    background: var(--red);
    box-shadow: 0 12px 35px rgba(31, 0, 3, .42);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    text-decoration: none;
    text-transform: uppercase;
  }
}

@media (max-width: 760px) {
  .consultants-showcase { min-height: 0; }
  .consultants-layout {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
    padding-block: 68px;
  }
  .consultants-media { width: 100%; height: 330px; order: 2; border-radius: 3px 30px 3px 3px; }
  .consultants-media img { object-position: 58% center; }
  .consultants-copy { width: 100%; order: 1; }
  .consultants-copy .button { width: 100%; justify-content: space-between; }
}

/* Direção visual inspirada na referência MID, adaptada à GDR */
.hero {
  padding-top: 102px;
  background: #0b0b0d;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #29292d;
  border-radius: 28px;
  background: linear-gradient(135deg, #09090b 0%, #0d0d10 100%);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .28);
}

.hero-shell .hero-grid {
  min-height: 540px;
  grid-template-columns: minmax(410px, .82fr) minmax(560px, 1.18fr);
  gap: 28px;
  padding: 38px 40px 0;
}

.hero-shell .hero-copy h1 {
  max-width: 570px;
  margin-bottom: 18px;
  font-size: clamp(42px, 4.2vw, 54px);
}

.hero-shell .hero-visual {
  width: 100%;
  height: 500px;
  align-self: end;
  margin: 0;
}

.hero-shell .hero-visual::after {
  background: linear-gradient(90deg, #0d0d10 0%, transparent 22%), linear-gradient(0deg, rgba(13,13,16,.72), transparent 27%);
}

.hero-shell .hero-visual > img {
  object-fit: contain;
  object-position: center bottom;
}

.hero-metrics {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 22px;
  width: 54%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
}

.hero-metrics > div {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px;
  border-left: 1px solid #343439;
}

.hero-metrics > div:first-child { border-left: 0; }

.hero-metrics dd {
  margin: 0 0 5px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(23px, 2.3vw, 32px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}

.hero-metrics dt {
  max-width: 150px;
  color: #85858b;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
}

.client-logos { border-top: 0; }

#problemas { background: #f0f0f1; }
#problemas { padding-block: 72px; }

#problemas .section-heading h2::after {
  content: "";
  width: 86px;
  height: 5px;
  display: block;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--red);
}

.problem-grid {
  gap: 14px;
  border: 0;
}

.problem-card {
  min-height: 225px;
  border: 1px solid #d7d7da;
  border-radius: 16px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 30px rgba(25, 25, 29, .04);
}

.problem-card.featured { border-color: var(--red); }

.problem-cta {
  margin: 30px 0 0;
  color: #646469;
  font-size: 13px;
  text-align: center;
}

.problem-cta a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

section[id] { scroll-margin-top: 84px; }
.cta-copy h2 { font-size: clamp(38px, 4vw, 50px); }

@media (max-width: 1020px) {
  .hero-shell .hero-grid {
    min-height: 500px;
    grid-template-columns: .88fr 1.12fr;
    padding: 34px 30px 0;
  }

  .hero-shell .hero-copy h1 { font-size: clamp(42px, 5.7vw, 56px); }
  .hero-shell .hero-visual { height: 450px; }
  .hero-metrics { padding-inline: 20px; }
  .hero-metrics > div { padding-inline: 14px; }
}

@media (max-width: 760px) {
  .hero { padding-top: 84px; }
  .hero-shell { border-radius: 20px; }

  .hero-shell .hero-grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 22px;
    padding: 34px 22px 22px;
  }

  .hero-shell .hero-copy h1 { font-size: clamp(40px, 11.5vw, 50px); }
  .hero-shell .hero-support { display: none; }
  .hero-shell .hero-actions { max-width: none; }

  .hero-shell .hero-visual {
    width: 100%;
    height: 240px;
    margin: 0;
  }

  .hero-shell .hero-visual > img { object-position: center bottom; }

  .hero-metrics {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    padding: 18px 14px 22px;
    border-top: 1px solid #303035;
  }

  .hero-metrics > div {
    min-height: 78px;
    padding: 14px 12px;
    border-left: 0;
    border-top: 1px solid #303035;
  }

  .hero-metrics > div:nth-child(-n+2) { border-top: 0; }
  .hero-metrics > div:nth-child(even) { border-left: 1px solid #303035; }
  .hero-metrics dd { font-size: 25px; }
  .hero-metrics dt { font-size: 8px; }

  .problem-grid { gap: 12px; }
  .problem-card { border-radius: 14px; }
  .problem-cta { font-size: 12px; }
  .method-photo { height: 240px; }
}

.client-logos { overflow: hidden; }

.client-logo-list.is-looping {
  width: max-content;
  display: flex;
  grid-template-columns: none;
  gap: 42px;
  align-items: center;
  animation: client-logo-loop 26s linear infinite;
  will-change: transform;
}

.client-logo-list.is-looping:hover { animation-play-state: paused; }

.client-logo-list.is-looping img {
  width: 92px;
  min-width: 92px;
  max-width: 92px;
}

@keyframes client-logo-loop {
  to { transform: translate3d(calc(-50% - 21px), 0, 0); }
}

@media (max-width: 760px) {
  .client-logo-list.is-looping { gap: 28px; animation-duration: 20s; }
  .client-logo-list.is-looping img { width: 72px; min-width: 72px; max-width: 72px; }
  @keyframes client-logo-loop {
    to { transform: translate3d(calc(-50% - 14px), 0, 0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-list.is-looping { animation: none; transform: none; }
}

/* Método: uma única narrativa, do problema à execução */
.method-unified {
  padding-block: 72px;
  background: #0d0d0f;
}

.method-story {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid #2c2c30;
  border-radius: 24px;
  background: #09090b;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.method-story::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, #09090b 0%, rgba(9, 9, 11, .98) 42%, rgba(9, 9, 11, .72) 58%, transparent 82%),
    linear-gradient(0deg, rgba(9, 9, 11, .34), transparent 42%);
  pointer-events: none;
}

.method-story-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.method-story-content {
  position: relative;
  z-index: 2;
  width: 60%;
  padding: 48px 54px 42px;
}

.method-story h2 {
  max-width: 660px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.method-story h2 span { color: var(--red-bright); }

.method-story-lead {
  max-width: 610px;
  margin: 18px 0 22px;
  color: #aaaab0;
  font-size: 13px;
  line-height: 1.65;
}

.method-story-steps {
  max-width: 610px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-story-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.method-story-steps > li > span {
  padding-top: 2px;
  color: var(--red-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 19px;
  line-height: 1;
}

.method-story-steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

.method-story-steps p {
  margin: 0;
  color: #8f8f95;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 1020px) {
  .method-story-content { width: 68%; padding-inline: 40px; }
  .method-story::after {
    background: linear-gradient(90deg, #09090b 0%, rgba(9, 9, 11, .98) 50%, rgba(9, 9, 11, .68) 72%, transparent 100%);
  }
}

@media (max-width: 760px) {
  .method-unified { padding-block: 56px; }

  .method-story {
    min-height: 0;
    border-radius: 18px;
  }

  .method-story::after {
    background:
      linear-gradient(180deg, #09090b 0%, #09090b 66%, rgba(9, 9, 11, .7) 82%, transparent 100%),
      linear-gradient(90deg, #09090b 0%, transparent 100%);
  }

  .method-story-image {
    inset: auto 0 0;
    height: 280px;
    object-position: center bottom;
  }

  .method-story-content {
    width: 100%;
    padding: 30px 22px 230px;
  }

  .method-story h2 { font-size: clamp(31px, 9vw, 39px); }
  .method-story-lead { margin-block: 16px 18px; font-size: 12px; }
  .method-story-steps li { grid-template-columns: 28px 1fr; gap: 12px; padding: 12px 0; }
  .method-story-steps strong { font-size: 14px; }
  .method-story-steps p { font-size: 10.5px; }
}

/* Seções de consciência e entrega */
.hero-shell .hero-visual::after {
  z-index: 1;
  background:
    linear-gradient(180deg, #0d0d10 0%, rgba(13, 13, 16, .76) 7%, transparent 30%, transparent 76%, rgba(13, 13, 16, .72) 100%),
    linear-gradient(90deg, #0d0d10 0%, rgba(13, 13, 16, .76) 8%, transparent 26%);
}

.client-logos {
  min-height: 104px;
  display: block;
  padding-block: 25px;
}

.client-logo-list.is-looping { min-height: 54px; }

#problemas .section-heading {
  max-width: 900px;
}

#problemas .section-heading h2 {
  max-width: 780px;
  margin-inline: auto;
}

.problem-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.problem-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
}

.problem-card h3 {
  max-width: none;
  font-size: 16px;
  line-height: 1.35;
}

.problem-card p { margin-top: auto; }

.problem-card:hover {
  border-color: rgba(200, 0, 18, .35);
  box-shadow: 0 18px 42px rgba(25, 25, 29, .09);
}

.consultants-detail {
  max-width: 520px;
  margin: -14px 0 30px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.65;
}

.deliverables-section { background: var(--white); }

.deliverables-section .section-heading {
  max-width: 850px;
}

.deliverables-section .section-heading h2 {
  font-size: clamp(36px, 4vw, 52px);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.deliverable-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  border: 1px solid #dedee1;
  border-radius: 16px;
  background: #f5f3ef;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.deliverable-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 0, 18, .38);
  box-shadow: 0 18px 42px rgba(25, 25, 29, .1);
}

.deliverable-card .icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--red);
  border-color: rgba(200, 0, 18, .2);
  background: rgba(200, 0, 18, .06);
}

.deliverable-card h3 {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.deliverable-card p {
  margin: auto 0 0;
  color: var(--gray-600);
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 1020px) {
  .problem-grid,
  .deliverables-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .client-logos { min-height: 86px; padding-block: 18px; }
  .client-logo-list.is-looping { min-height: 48px; }

  .problem-grid,
  .deliverables-grid { grid-template-columns: 1fr; }

  .problem-card,
  .deliverable-card {
    min-height: 0;
    padding: 25px 24px;
  }

  .problem-card p,
  .deliverable-card p { margin-top: 8px; }
  .consultants-detail { margin-top: -12px; font-size: 12px; }
}

/* Depoimentos v2 — prova social com leitura e navegação claras */
#resultados.results-showcase {
  padding-block: 86px 74px;
  overflow: hidden;
  background: #eceae6;
}

.results-showcase .testimonial-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  margin-bottom: 34px;
}

.results-showcase .testimonial-heading-row .section-heading {
  max-width: 760px;
  margin: 0;
}

.results-showcase .testimonial-heading-row .section-heading h2 {
  max-width: none;
  margin: 0 0 12px;
  font-size: clamp(40px, 4.4vw, 58px);
  letter-spacing: -.055em;
}

.results-showcase .testimonial-intro {
  max-width: 680px !important;
  color: #646469 !important;
  font-size: 14px;
}

.results-showcase .slider-controls {
  display: flex;
  gap: 10px;
  padding: 0 0 2px;
}

.results-showcase .slider-button {
  width: 56px;
  height: 56px;
  border: 1px solid #c9c7c3;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  box-shadow: none;
}

.results-showcase .slider-button:last-child {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(200, 0, 18, .2);
}

.results-showcase .slider-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.results-showcase .slider-button:hover,
.results-showcase .slider-button:focus-visible {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-2px);
}

.results-showcase .testimonial-carousel {
  cursor: grab;
  outline: none;
  touch-action: pan-y;
  user-select: none;
}

.results-showcase .testimonial-carousel.is-dragging { cursor: grabbing; }
.results-showcase .testimonial-carousel.is-dragging * { pointer-events: none; }

.results-showcase .testimonial-viewport {
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #0b0b0d;
  box-shadow: 0 32px 80px rgba(17, 17, 20, .18);
}

.results-showcase .testimonial-track {
  display: flex;
  will-change: transform;
}

.results-showcase .testimonial-slide {
  position: relative;
  min-width: 100%;
  min-height: 510px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  color: var(--white);
  background: #0b0b0d;
}

.results-showcase .testimonial-media {
  position: relative;
  min-height: 482px;
  margin: 14px 0 14px 14px;
  overflow: hidden;
  border-radius: 18px;
  clip-path: none;
  background: #19191c;
}

.results-showcase .testimonial-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 56%, rgba(8, 8, 10, .36) 100%),
    linear-gradient(90deg, transparent 78%, rgba(200, 0, 18, .14) 100%);
  pointer-events: none;
}

.results-showcase .testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: scale(1.015);
  transition: transform .8s cubic-bezier(.22, .7, .2, 1), filter .35s ease;
}

.results-showcase .testimonial-slide[aria-hidden="false"] .testimonial-media img {
  transform: scale(1.045);
}

.results-showcase .testimonial-content {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 62px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 0, 18, .17), transparent 38%),
    #0b0b0d;
}

.results-showcase .testimonial-content::before {
  content: "";
  width: 66px;
  height: 4px;
  margin: 0 0 30px;
  background: var(--red-bright);
}

.results-showcase .testimonial-case-number {
  position: absolute;
  top: 18px;
  right: 32px;
  color: rgba(255, 255, 255, .055);
  font-family: "Bebas Neue", sans-serif;
  font-size: 112px;
  line-height: 1;
  pointer-events: none;
}

.results-showcase .testimonial-content h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: #a7a7ad;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .01em;
  text-transform: none;
}

.results-showcase .testimonial-content p {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin: 0;
  color: #d0d0d4;
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 2.55vw, 34px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.045em;
}

.results-showcase .testimonial-content p span {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.results-showcase .testimonial-slide .testimonial-content > * {
  transition: opacity .5s ease, transform .6s cubic-bezier(.22, .7, .2, 1);
}

.results-showcase .testimonial-slide[aria-hidden="true"] .testimonial-content > * {
  opacity: 0;
  transform: translate3d(24px, 0, 0);
}

.results-showcase .testimonial-slide[aria-hidden="false"] .testimonial-content > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.results-showcase .testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 22px 4px 0;
}

.results-showcase .slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.results-showcase .slider-dots button {
  width: 46px;
  height: 20px;
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
}

.results-showcase .slider-dots button::after {
  content: "";
  position: absolute;
  inset: 9px 0 auto;
  height: 2px;
  background: #bbb9b5;
  transition: height .2s ease, background .2s ease, transform .2s ease;
}

.results-showcase .slider-dots button:hover::after { background: #77777c; }
.results-showcase .slider-dots button.active { width: 72px; background: transparent; }
.results-showcase .slider-dots button.active::after { height: 4px; background: var(--red); transform: translateY(-1px); }

.results-showcase .slider-status {
  color: #5c5c61;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.results-showcase .swipe-hint {
  margin: 8px 0 0 4px;
  color: #85858a;
  font-size: 9px;
  text-align: left;
}

.results-showcase .case-disclaimer {
  max-width: 720px;
  margin: 24px 0 0;
  color: #79797e;
  font-size: 9px;
  line-height: 1.6;
}

@media (max-width: 1020px) {
  .results-showcase .testimonial-slide { grid-template-columns: 1fr 1fr; }
  .results-showcase .testimonial-content { padding: 48px 42px; }
  .results-showcase .testimonial-content p { font-size: clamp(22px, 3vw, 30px); }
}

@media (max-width: 760px) {
  #resultados.results-showcase { padding-block: 62px 58px; }

  .results-showcase .testimonial-heading-row {
    display: block;
    margin-bottom: 26px;
  }

  .results-showcase .testimonial-heading-row .section-heading { max-width: none; }
  .results-showcase .testimonial-heading-row .section-heading h2 { font-size: clamp(36px, 10vw, 44px); }

  .results-showcase .testimonial-heading-row .section-heading p {
    display: block;
    max-width: none !important;
    font-size: 12px;
    line-height: 1.6;
  }

  .results-showcase .slider-controls {
    justify-content: flex-end;
    margin-top: 20px;
  }

  .results-showcase .slider-button { width: 48px; height: 48px; }
  .results-showcase .testimonial-viewport { border-radius: 18px; }

  .results-showcase .testimonial-slide {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 250px auto;
  }

  .results-showcase .testimonial-media {
    grid-row: 1;
    min-height: 0;
    height: 240px;
    margin: 10px 10px 0;
    border-radius: 13px;
  }

  .results-showcase .testimonial-content {
    grid-row: 2;
    min-height: 285px;
    padding: 36px 28px 38px;
  }

  .results-showcase .testimonial-content::before {
    width: 48px;
    margin-bottom: 22px;
  }

  .results-showcase .testimonial-case-number {
    top: 18px;
    right: 22px;
    font-size: 84px;
  }

  .results-showcase .testimonial-content h3 {
    margin-bottom: 16px;
    padding-right: 64px;
    font-size: 14px;
  }

  .results-showcase .testimonial-content p {
    max-width: none;
    font-size: clamp(21px, 6.3vw, 25px);
    line-height: 1.25;
  }

  .results-showcase .testimonial-footer { padding-top: 18px; }
  .results-showcase .slider-dots button { width: 30px; }
  .results-showcase .slider-dots button.active { width: 48px; }
  .results-showcase .swipe-hint { margin-top: 5px; }
  .results-showcase .case-disclaimer { margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .results-showcase .testimonial-slide .testimonial-content > *,
  .results-showcase .testimonial-media img { transition: none; }
}

/* Cards de dores e entregas — alinhamento central e acabamento mais limpo */
.problem-card,
.deliverable-card {
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 34px 24px 30px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #dedee1;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f8f7f4 100%);
  box-shadow: 0 10px 28px rgba(25, 25, 29, .045);
}

.problem-card::before,
.deliverable-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 54px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width .25s ease;
}

.problem-card .icon-wrap,
.deliverable-card .icon-wrap {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  margin: 0 auto 22px;
  color: var(--red);
  border: 1px solid rgba(200, 0, 18, .18);
  background: rgba(200, 0, 18, .065);
  box-shadow: 0 9px 22px rgba(200, 0, 18, .08);
}

.problem-card .icon-wrap svg,
.deliverable-card .icon-wrap svg {
  width: 24px;
  height: 24px;
}

.problem-card h3,
.deliverable-card h3 {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -.025em;
  text-align: center;
}

.problem-card p,
.deliverable-card p {
  max-width: 245px;
  margin: 0 auto !important;
  color: #6a6a70;
  font-size: 11.5px;
  line-height: 1.65;
  text-align: center;
}

.problem-card:hover,
.deliverable-card:hover {
  border-color: rgba(200, 0, 18, .3);
  background: #fff;
  box-shadow: 0 20px 46px rgba(25, 25, 29, .1);
  transform: translateY(-5px);
}

.problem-card:hover::before,
.deliverable-card:hover::before { width: 100%; }

@media (max-width: 1020px) {
  .problem-card h3,
  .deliverable-card h3 { min-height: 44px; }
}

@media (max-width: 760px) {
  .problem-card,
  .deliverable-card {
    min-height: 0;
    padding: 30px 24px 28px;
  }

  .problem-card h3,
  .deliverable-card h3 {
    min-height: 0;
    margin-bottom: 10px;
  }

  .problem-card p,
  .deliverable-card p { max-width: 300px; }
}

/* Sincronização visual do frame Desktop · 1280 no Figma */
.hero-shell {
  background: linear-gradient(150.882deg, #420001 0%, #000 70.5%);
}

.hero-shell .hero-grid {
  min-height: 540px;
  grid-template-columns: minmax(0, 438.7px) minmax(0, 631.3px);
  gap: 28px;
  padding: 20px 40px 0;
}

.hero-shell .hero-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 439px;
}

.hero-shell .hero-copy h1 {
  max-width: 439px;
  margin: 0;
  font-size: 46px;
  line-height: 1.145;
  letter-spacing: -.064em;
}

.hero-shell .hero-copy h1 span { color: #c80012; }

.hero-shell .hero-lead {
  max-width: 439px;
  margin: 18px 0 0;
  font-size: 21px;
  line-height: 1.45;
}

.hero-shell .hero-lead::first-letter { color: inherit; }

.hero-shell .hero-brand-mark {
  color: #c80012;
  font-weight: 900;
}

.hero-shell .hero-support {
  max-width: 439px;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.65;
}

.hero-shell .hero-actions {
  width: 100%;
  margin-top: 26px;
}

.hero-shell .button-hero-figma {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1.12;
  white-space: nowrap;
}

.hero-shell .hero-visual {
  width: 100%;
  height: 530px;
  margin: 0;
}

.hero-shell .hero-visual::after { display: none; }

.hero-shell .hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#problemas { padding: 72px 0 52px; }

.problem-card {
  min-height: 292px;
  padding: 35px 25px 31px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f8f7f4 100%);
}

.problem-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 30px 0 0;
}

.problem-cta p {
  margin: 0;
  color: #646469;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.problem-cta .problem-cta-button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 8px;
  color: #fff;
  background: #0d0d0f;
  box-shadow: 0 16px 24px rgba(200, 0, 18, .28);
  font-size: 20px;
  line-height: 1.12;
  text-decoration: none;
  white-space: nowrap;
}

.method-unified {
  padding-block: 72px;
  color: #fff;
  background: #fefefe;
}

.method-story {
  min-height: 573px;
  border-radius: 24px;
  background: linear-gradient(-57.758deg, #09090b 52.967%, #c80012 100%);
}

.method-story::after { display: none; }

.method-story-content {
  width: 100%;
  min-height: 573px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 77px 116px 76px;
  text-align: center;
}

.method-story h2 {
  max-width: 599px;
  margin: 0;
  font-size: 46.08px;
  line-height: 1.03;
  letter-spacing: -.055em;
}

.method-story-lead {
  max-width: 599px;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
}

.method-story-steps {
  width: 100%;
  max-width: 949px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  margin: 42px 0 0;
}

.method-story-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  text-align: center;
  transition: transform .25s ease;
}

.method-story-steps li:hover { transform: translateY(-3px); }

.method-story-steps > li > span {
  padding: 0;
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
}

.method-story-steps strong {
  margin: 1px 0 4px;
  font-size: 16px;
  line-height: 1.25;
}

.method-story-steps p {
  max-width: 307px;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.method-story-cta {
  min-height: 54px;
  margin-top: 42px;
  padding-inline: 24px;
  font-size: 14px;
}

.button-hero-figma,
.problem-cta-button,
.method-story-cta {
  position: relative;
  overflow: hidden;
}

.button-hero-figma::after,
.problem-cta-button::after,
.method-story-cta::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
  pointer-events: none;
}

.button-hero-figma:hover::after,
.problem-cta-button:hover::after,
.method-story-cta:hover::after { left: 115%; }

@media (max-width: 1020px) {
  .hero-shell .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    padding-inline: 30px;
  }

  .hero-shell .hero-copy h1 { font-size: 40px; }
  .hero-shell .hero-lead { font-size: 18px; }
  .hero-shell .button-hero-figma { font-size: 16px; }

  .method-story-content { padding-inline: 56px; }
  .method-story-steps { gap: 24px; }
}

@media (max-width: 760px) {
  .hero-shell .hero-grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 18px;
    padding: 32px 22px 20px;
  }

  .hero-shell .hero-copy {
    align-self: auto;
    max-width: none;
  }

  .hero-shell .hero-copy h1 {
    max-width: 340px;
    font-size: clamp(36px, 10.4vw, 43px);
    line-height: 1.06;
  }

  .hero-shell .hero-lead {
    max-width: none;
    margin-top: 16px;
    font-size: 17px;
  }

  .hero-shell .hero-support {
    display: block;
    max-width: none;
  }

  .hero-shell .button-hero-figma {
    width: 100%;
    padding-inline: 16px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  .hero-shell .hero-visual { height: 300px; }

  #problemas { padding-block: 64px 48px; }

  .problem-cta p {
    max-width: 320px;
    font-size: 12px;
  }

  .problem-cta .problem-cta-button {
    width: 100%;
    padding-inline: 16px;
    font-size: 15px;
    white-space: normal;
    text-align: center;
  }

  .method-unified { padding-block: 56px; }

  .method-story {
    min-height: 0;
    border-radius: 18px;
    background: linear-gradient(145deg, #7d000a 0%, #09090b 42%, #09090b 100%);
  }

  .method-story-content {
    min-height: 0;
    padding: 40px 22px;
  }

  .method-story h2 {
    font-size: clamp(31px, 9vw, 39px);
    line-height: 1.05;
  }

  .method-story-lead {
    margin-top: 16px;
    font-size: 12px;
  }

  .method-story-steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
  }

  .method-story-steps li {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.13);
  }

  .method-story-steps p { max-width: 300px; }

  .method-story-cta {
    width: 100%;
    margin-top: 28px;
    padding-inline: 16px;
    justify-content: space-between;
    font-size: 12px;
  }
}

/* Prova social em vídeo */
#resultados.results-video-showcase {
  padding-block: 86px 70px;
  color: #fff;
  background: #111214;
}

.results-video-showcase .testimonial-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  text-align: center;
}

.results-video-showcase .testimonial-heading-row .section-heading {
  max-width: 760px;
  margin-inline: auto;
}

.results-video-showcase .testimonial-heading-row .section-heading h2 {
  max-width: 720px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(38px, 4vw, 52px);
}

.results-video-showcase .testimonial-intro {
  max-width: 650px;
  margin-inline: auto !important;
  color: #aaaab0 !important;
  font-size: 14px;
  line-height: 1.65;
}

.results-video-showcase .testimonial-carousel { position: relative; }

.results-video-showcase .testimonial-viewport {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: #18181b;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.results-video-showcase .testimonial-slide {
  min-height: 470px;
  grid-template-columns: minmax(0, 62%) minmax(0, 38%);
  background: #18181b;
}

.results-video-showcase .testimonial-media {
  min-height: 470px;
  padding: 12px;
  background: #0b0b0d;
}

.results-video-showcase .testimonial-media::after { display: none; }

.testimonial-video-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 446px;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: #09090b;
  cursor: pointer;
}

.testimonial-video-trigger::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 40%, rgba(0,0,0,.72) 100%);
  transition: background .3s ease;
}

.testimonial-video-trigger:hover::before {
  background: linear-gradient(180deg, rgba(0,0,0,.02) 35%, rgba(0,0,0,.62) 100%);
}

.results-video-showcase .testimonial-media .testimonial-video-trigger > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: transform .65s cubic-bezier(.22,.7,.2,1), filter .3s ease;
}

.results-video-showcase .testimonial-media .testimonial-video-trigger:hover > img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.testimonial-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255,255,255,.96);
  border-radius: 50%;
  background: rgba(0,0,0,.06);
  box-shadow: 0 12px 35px rgba(0,0,0,.34);
  backdrop-filter: blur(2px);
  transform: translate(-50%, -50%);
  transition: transform .25s ease, box-shadow .25s ease;
}

.testimonial-video-trigger:hover .testimonial-play {
  border-color: #fff;
  box-shadow: 0 16px 42px rgba(0,0,0,.42), 0 0 0 7px rgba(255,255,255,.12);
  transform: translate(-50%, -50%) scale(1.06);
}

.testimonial-play svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
  fill: #fff;
}

.testimonial-watch {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 26px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.results-video-showcase .testimonial-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 54px 44px 42px;
  color: #fff;
  background: #18181b;
}

.results-video-showcase .testimonial-content::before {
  display: none;
}

.results-video-showcase .testimonial-case-number {
  top: 34px;
  right: 34px;
  color: rgba(255,255,255,.06);
  font-size: 88px;
}

.results-video-showcase .testimonial-content h3 {
  margin: 0 0 24px;
  color: #c80012;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -.02em;
  text-transform: none;
}

.results-video-showcase .testimonial-content p {
  max-width: 390px;
  margin: 0;
  color: #f4f4f5;
  font-family: "Poppins", sans-serif;
  font-size: clamp(22px, 1.9vw, 28px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.04em;
}

.results-video-showcase .testimonial-content p span {
  display: block;
  color: #fff;
}

.testimonial-outcomes {
  display: grid;
  gap: 9px;
  margin: 32px 0 0;
  padding: 23px 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
  list-style: none;
}

.testimonial-outcomes li {
  position: relative;
  padding-left: 19px;
  color: #aaaab0;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.5;
}

.testimonial-outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 2px;
  background: #c80012;
}

.testimonial-inline-play {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  padding: 0 17px 0 19px;
  border: 1px solid #d8d5d0;
  border-radius: 999px;
  color: #0d0d0f;
  background: #f8f7f4;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.testimonial-inline-play span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #c80012;
  font-size: 9px;
}

.testimonial-inline-play:hover {
  border-color: #c80012;
  color: #fff;
  background: #c80012;
  transform: translateY(-2px);
}

.testimonial-inline-play:hover span { color: #c80012; background: #fff; }

.results-video-showcase .slider-controls {
  position: absolute;
  z-index: 5;
  top: 235px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  padding: 0;
  pointer-events: none;
}

.results-video-showcase .slider-button,
.results-video-showcase .slider-button:last-child {
  width: 46px;
  height: 46px;
  border: 3px solid rgba(255,255,255,.96);
  color: #fff;
  background: rgba(0,0,0,.06);
  box-shadow: 0 12px 35px rgba(0,0,0,.34);
  backdrop-filter: blur(2px);
  pointer-events: auto;
}

.results-video-showcase .slider-button:hover,
.results-video-showcase .slider-button:focus-visible,
.results-video-showcase .slider-button:last-child:hover,
.results-video-showcase .slider-button:last-child:focus-visible {
  border-color: #fff;
  color: #fff;
  background: rgba(200,0,18,.88);
  transform: scale(1.05);
}

.results-video-showcase .slider-button svg {
  width: 18px;
  height: 18px;
}

.results-video-showcase .testimonial-footer {
  width: calc(62% - 12px);
  max-width: none;
  align-items: center;
  gap: 0;
  margin: 18px 0 0 12px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  background: #1a1a1d;
  transform: none;
}

.results-video-showcase .testimonial-logo-nav {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
}

.results-video-showcase .testimonial-logo-nav::-webkit-scrollbar { display: none; }

.results-video-showcase .testimonial-logo-nav button,
.results-video-showcase .testimonial-logo-nav button.active {
  width: auto;
  height: 62px;
  min-width: 0;
  flex: 1 1 0;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #09090b;
  opacity: .5;
  cursor: pointer;
  transition: border-color .2s ease, opacity .2s ease, transform .2s ease;
}

.results-video-showcase .testimonial-logo-nav button::after { display: none; }

.results-video-showcase .testimonial-logo-nav button:hover {
  border-color: rgba(255,255,255,.45);
  background: #09090b;
  opacity: .85;
  transform: translateY(-1px);
}

.results-video-showcase .testimonial-logo-nav button.active {
  border-color: #c80012;
  background: #09090b;
  box-shadow: none;
  opacity: 1;
}

.results-video-showcase .testimonial-logo-nav img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: none;
}

.results-video-showcase .testimonial-logo-nav span {
  color: #1b1b1e;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.results-video-showcase .slider-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.results-video-showcase .swipe-hint { margin-top: 4px; }
.results-video-showcase .case-disclaimer { margin-top: 18px; color: #77777e; }

.testimonial-video-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}

.testimonial-video-modal[hidden] { display: none; }

.testimonial-video-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4,4,5,.86);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.testimonial-video-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  padding: 14px 14px 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  color: #fff;
  background: #0c0c0e;
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
}

.testimonial-video-close {
  position: absolute;
  z-index: 3;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid #0c0c0e;
  border-radius: 50%;
  color: #fff;
  background: #c80012;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.testimonial-video-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 13px;
  background: #050506;
}

.testimonial-video-stage video,
.testimonial-video-stage iframe,
.testimonial-video-fallback {
  width: 100%;
  height: 100%;
}

.testimonial-video-stage video { display: block; object-fit: contain; }
.testimonial-video-stage video[hidden] { display: none; }
.testimonial-video-stage iframe { display: block; border: 0; background: #050506; }
.testimonial-video-stage iframe[hidden] { display: none; }

.testimonial-video-fallback {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
}

.testimonial-video-fallback[hidden] { display: none; }

.testimonial-video-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.66);
}

.testimonial-video-fallback img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-video-fallback div {
  position: relative;
  z-index: 1;
  max-width: 470px;
  padding: 24px;
}

.testimonial-video-fallback strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
}

.testimonial-video-fallback p { margin: 0; color: #b7b7bc; font-size: 13px; }

.testimonial-video-external {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: #c80012;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.testimonial-video-external[hidden] { display: none; }
.testimonial-video-external:hover { background: #e00016; }

.testimonial-video-dialog > h3 {
  margin: 18px 8px 0;
  font-size: 17px;
}

body.video-modal-open { overflow: hidden; }

@media (max-width: 760px) {
  #resultados.results-video-showcase { padding-block: 62px 54px; }

  .results-video-showcase .testimonial-heading-row {
    align-items: center;
    gap: 0;
    text-align: center;
  }

  .results-video-showcase .testimonial-heading-row .section-heading h2 {
    font-size: clamp(34px, 9.7vw, 42px);
  }

  .results-video-showcase .testimonial-heading-row .section-heading p {
    display: block;
    max-width: 330px;
    margin: 14px auto 0 !important;
    font-size: 12px;
  }

  .results-video-showcase .testimonial-slide {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .results-video-showcase .testimonial-media {
    min-height: 0;
    height: auto;
    padding: 9px;
  }

  .testimonial-video-trigger {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
  }

  .testimonial-play {
    width: 62px;
    height: 62px;
    border-width: 3px;
  }

  .testimonial-play svg { width: 25px; height: 25px; }
  .testimonial-watch { left: 18px; bottom: 16px; font-size: 11px; }

  .results-video-showcase .testimonial-content {
    min-height: 0;
    padding: 30px 26px 28px;
  }

  .results-video-showcase .testimonial-content::before { top: 30px; left: 26px; }
  .results-video-showcase .testimonial-case-number { top: 20px; right: 22px; font-size: 65px; }

  .results-video-showcase .testimonial-content h3 {
    margin: 0 0 16px;
    font-size: 14px;
  }

  .results-video-showcase .testimonial-content p {
    max-width: 310px;
    font-size: 21px;
  }

  .testimonial-outcomes { margin-top: 24px; padding-top: 20px; }
  .testimonial-inline-play { width: 100%; justify-content: space-between; margin-top: 24px; }

  .results-video-showcase .testimonial-footer {
    align-items: center;
    margin-top: 14px;
    padding: 7px;
  }

  .results-video-showcase .testimonial-logo-nav button,
  .results-video-showcase .testimonial-logo-nav button.active {
    width: 66px;
    min-width: 66px;
    height: 42px;
    padding: 0;
  }

  .results-video-showcase .testimonial-logo-nav { gap: 6px; }
  .results-video-showcase .testimonial-logo-nav img { height: 100%; }
  .results-video-showcase .swipe-hint { max-width: 280px; }

  .results-video-showcase .slider-controls {
    top: clamp(105px, 30vw, 125px);
    left: 16px;
    right: 16px;
  }

  .results-video-showcase .slider-button,
  .results-video-showcase .slider-button:last-child {
    width: 34px;
    height: 34px;
  }

  .results-video-showcase .testimonial-footer,
  .results-video-showcase .slider-controls {
    display: none;
  }

  .testimonial-video-modal { padding: 16px; }
  .testimonial-video-dialog { padding: 8px 8px 18px; border-radius: 15px; }
  .testimonial-video-close { top: -10px; right: -8px; }
  .testimonial-video-fallback strong { font-size: 19px; }
  .testimonial-video-fallback p { font-size: 11px; }
}

/* Cases de sucesso: vídeo, seletor e resultado no mesmo card */
#resultados.results-video-showcase {
  padding-block: 78px 64px;
  background:
    radial-gradient(circle at 50% 100%, rgba(200, 0, 18, .07), transparent 38%),
    #111214;
}

.results-video-showcase .testimonial-heading-row {
  margin-bottom: 32px;
}

.results-video-showcase .testimonial-heading-row .section-heading h2 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(34px, 3.7vw, 48px);
  line-height: 1.04;
}

.results-video-showcase .testimonial-intro {
  max-width: 620px;
  font-size: 13px;
  line-height: 1.6;
}

.results-video-showcase .testimonial-carousel {
  width: min(100%, 1060px);
  display: grid;
  grid-template-columns: minmax(0, 64%) minmax(0, 36%);
  grid-template-rows: auto 84px;
  overflow: hidden;
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: #101114;
  box-shadow: 0 26px 65px rgba(0,0,0,.28);
}

.results-video-showcase .testimonial-carousel::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 83px;
  left: 0;
  height: 1px;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}

.results-video-showcase .testimonial-viewport {
  grid-column: 1 / -1;
  grid-row: 1;
  border: 0;
  border-radius: 0;
  background: #18191c;
  box-shadow: none;
}

.results-video-showcase .testimonial-slide {
  min-height: 390px;
  grid-template-columns: minmax(0, 64%) minmax(0, 36%);
  background: #18191c;
}

.results-video-showcase .testimonial-media {
  min-height: 390px;
  margin: 0;
  padding: 12px;
  border-radius: 0;
  background: #0b0c0e;
}

.testimonial-video-trigger {
  min-height: 366px;
  border-radius: 13px;
}

.testimonial-play {
  width: 70px;
  height: 70px;
  border-width: 3px;
  background: rgba(7,7,8,.16);
}

.testimonial-play svg {
  width: 27px;
  height: 27px;
}

.results-video-showcase .testimonial-content {
  justify-content: center;
  padding: 44px 38px 72px;
  background: #18191c;
}

.results-video-showcase .testimonial-content h3 {
  margin-bottom: 20px;
  font-size: 14px;
}

.results-video-showcase .testimonial-content p {
  max-width: 320px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.18;
}

.testimonial-outcomes {
  gap: 8px;
  margin-top: 26px;
  padding-top: 20px;
}

.testimonial-outcomes li {
  color: #b5b5ba;
  font-size: 11px;
  font-weight: 500;
}

.results-video-showcase .testimonial-footer {
  position: static;
  z-index: 4;
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  width: auto;
  height: 60px;
  margin: 0 12px 12px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
}

.results-video-showcase .testimonial-logo-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(54px, 1fr));
  height: 100%;
  gap: 6px;
  overflow: hidden;
}

.results-video-showcase .testimonial-logo-nav button,
.results-video-showcase .testimonial-logo-nav button.active {
  width: 100%;
  height: 60px;
  border-radius: 7px;
  opacity: .56;
}

.results-video-showcase .testimonial-logo-nav button:hover {
  transform: none;
}

.results-video-showcase .testimonial-logo-nav button.active {
  border-color: #e40018;
  box-shadow: 0 0 0 1px rgba(228,0,24,.18);
  opacity: 1;
}

.results-video-showcase .slider-controls {
  position: static;
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  width: auto;
  gap: 2px;
  margin: 0 18px 0 0;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background: rgba(11,11,13,.58);
  backdrop-filter: blur(8px);
}

.results-video-showcase .slider-button,
.results-video-showcase .slider-button:last-child {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  color: rgba(255,255,255,.82);
  background: transparent;
  box-shadow: none;
}

.results-video-showcase .slider-button svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.8;
}

.results-video-showcase .slider-button:hover,
.results-video-showcase .slider-button:focus-visible,
.results-video-showcase .slider-button:last-child:hover,
.results-video-showcase .slider-button:last-child:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.12);
  transform: none;
}

.testimonial-cta {
  width: min(100%, 1060px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 28px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.testimonial-cta p {
  margin: 0;
  color: #f2f2f3;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.025em;
}

.testimonial-cta-button {
  min-height: 50px;
  padding-left: 22px;
  color: #fff;
  background: #c80012;
  box-shadow: 0 14px 30px rgba(200,0,18,.24);
}

.testimonial-cta-button .button-icon {
  color: #c80012;
  background: #fff;
}

.testimonial-cta-button:hover {
  background: #e00016;
  box-shadow: 0 18px 36px rgba(200,0,18,.32);
}

@media (max-width: 900px) {
  .results-video-showcase .testimonial-carousel {
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  }

  .results-video-showcase .testimonial-slide {
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  }

  .results-video-showcase .testimonial-footer {
    width: auto;
  }

  .results-video-showcase .testimonial-content {
    padding-inline: 28px;
  }
}

@media (max-width: 760px) {
  #resultados.results-video-showcase {
    padding-block: 58px 48px;
  }

  .results-video-showcase .testimonial-heading-row {
    margin-bottom: 26px;
  }

  .results-video-showcase .testimonial-heading-row .section-heading h2 {
    max-width: 350px;
    font-size: clamp(31px, 9vw, 39px);
  }

  .results-video-showcase .testimonial-intro {
    max-width: 340px !important;
    font-size: 12px;
  }

  .results-video-showcase .testimonial-viewport {
    border-radius: 0;
  }

  .results-video-showcase .testimonial-carousel {
    display: block;
    border-radius: 15px;
  }

  .results-video-showcase .testimonial-slide {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .results-video-showcase .testimonial-media {
    min-height: 0;
    padding: 8px;
  }

  .testimonial-video-trigger {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .results-video-showcase .testimonial-content {
    padding: 28px 24px 30px;
  }

  .results-video-showcase .testimonial-content h3 {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .results-video-showcase .testimonial-content p {
    max-width: 330px;
    font-size: 20px;
  }

  .testimonial-outcomes {
    margin-top: 22px;
    padding-top: 18px;
  }

  .results-video-showcase .testimonial-footer,
  .results-video-showcase .slider-controls {
    display: none;
  }

  .testimonial-cta {
    display: grid;
    gap: 16px;
    margin-top: 24px;
    padding-top: 22px;
    text-align: center;
  }

  .testimonial-cta p {
    max-width: 290px;
    margin-inline: auto;
    font-size: 16px;
  }

  .testimonial-cta-button {
    width: 100%;
    justify-content: space-between;
  }
}

/* Botões: cantos discretos e acabamento sem brilho */
.button {
  border-radius: 8px;
  box-shadow: none;
}

.button:hover,
.button-light:hover,
.button-hero-primary,
.button-dark-arrow,
.problem-cta-button,
.problem-cta .problem-cta-button,
.method-story-cta,
.testimonial-cta-button,
.testimonial-cta-button:hover {
  box-shadow: none;
}

.button-hero-figma::after,
.problem-cta-button::after,
.method-story-cta::after {
  display: none;
}

/* FAQ: duas colunas equilibradas e perguntas com leitura mais clara */
.faq-section {
  padding-block: 88px;
  background: #f5f3ef;
}

.faq-section .faq-grid {
  width: min(calc(100% - 96px), 1080px);
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(40px, 4.4vw, 56px);
}

.faq-section .faq-heading {
  position: static;
  top: auto;
  align-self: center;
  padding: 0 0 0 12px;
}

.faq-section .faq-heading h2 {
  max-width: 430px;
  margin-bottom: 18px;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.faq-section .faq-heading p {
  max-width: 390px;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.65;
}

.faq-section .accordion {
  display: grid;
  gap: 10px;
  border: 0;
}

.faq-section .accordion details,
.faq-section .accordion details[open] {
  overflow: hidden;
  padding: 0;
  border: 1px solid #dedee1;
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s ease, background .2s ease;
}

.faq-section .accordion details[open] {
  border-color: rgba(200, 0, 18, .34);
  box-shadow: inset 3px 0 0 #c80012;
}

.faq-section .accordion summary {
  min-height: 68px;
  padding: 20px 22px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.faq-section .accordion details p {
  max-width: 650px;
  margin: 0;
  padding: 0 62px 22px 22px;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .faq-section {
    padding-block: 62px;
  }

  .faq-section .faq-grid {
    width: min(calc(100% - 30px), var(--container));
    display: block;
  }

  .faq-section .faq-heading {
    margin-bottom: 34px;
    padding: 0;
    text-align: center;
  }

  .faq-section .faq-heading h2,
  .faq-section .faq-heading p {
    margin-inline: auto;
  }

  .faq-section .faq-heading h2 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .faq-section .faq-heading .button {
    width: 100%;
    justify-content: space-between;
  }

  .faq-section .accordion summary {
    min-height: 64px;
    padding: 18px;
    font-size: 13px;
  }

  .faq-section .accordion details p {
    padding: 0 48px 20px 18px;
    font-size: 12px;
  }
}

/* Dores: composição editorial no desktop; cards preservados no mobile */
@media (min-width: 761px) {
  #problemas {
    padding-block: 82px 72px;
    background: #f5f5f3;
  }

  #problemas .section-heading {
    max-width: 700px;
    margin-bottom: 48px;
  }

  #problemas .section-heading h2 {
    max-width: 660px;
    margin-bottom: 16px;
    font-size: clamp(38px, 4vw, 50px);
    line-height: 1.06;
  }

  #problemas .section-heading h2 span {
    display: block;
    color: var(--red);
  }

  #problemas .section-heading h2::after {
    display: none;
  }

  #problemas .section-heading > p {
    max-width: 610px;
    margin-inline: auto;
    color: #74747a;
    font-size: 14px;
    line-height: 1.65;
  }

  #problemas .problem-grid {
    width: min(100%, 900px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 76px;
    margin-inline: auto;
    border: 0;
  }

  #problemas .problem-card {
    min-height: 0;
    align-items: center;
    justify-content: start;
    padding: 0 18px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  #problemas .problem-card::before,
  #problemas .problem-card .icon-wrap {
    display: none;
  }

  #problemas .problem-card h3 {
    min-height: 0;
    display: block;
    margin: 0 0 10px;
    color: #28282c;
    font-size: 17px;
    line-height: 1.35;
  }

  #problemas .problem-card p {
    max-width: 350px;
    margin: 0 auto !important;
    color: #7a7a82;
    font-size: 13px;
    line-height: 1.65;
  }

  #problemas .problem-card:hover {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    transform: translateY(-2px);
  }

  #problemas .problem-cta {
    gap: 18px;
    margin-top: 48px;
  }

  #problemas .problem-cta p {
    max-width: 560px;
  }
}

/* Entregas: cards empilhados durante a rolagem */
.deliverables-section {
  padding-block: 92px 32px;
  background:
    radial-gradient(circle at 84% 18%, rgba(200,0,18,.055), transparent 31%),
    linear-gradient(90deg, transparent 0 49.92%, rgba(25,25,29,.035) 49.92% 50%, transparent 50% 100%),
    #f3f3f1;
}

.deliverables-section > .container {
  width: min(calc(100% - 96px), 1120px);
  display: grid;
  grid-template-columns: minmax(0, 390px) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(48px, 5vw, 68px);
}

.deliverables-section .section-heading {
  position: sticky;
  top: calc(50vh - 150px);
  max-width: 390px;
  margin: 0;
  padding: 28px 0 0;
  text-align: left;
}

.deliverables-section .section-heading h2 {
  max-width: 390px;
  margin: 0 0 20px;
  font-size: clamp(40px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.deliverables-section .section-heading h2 span {
  display: block;
  color: var(--red);
}

.deliverables-section .section-heading p {
  max-width: 360px;
  margin: 0;
  color: #6d6d73;
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

.deliverables-section .deliverables-scroll {
  position: relative;
  min-width: 0;
  height: 1250px;
}

.deliverables-section .deliverables-grid {
  position: sticky;
  top: 96px;
  display: block;
  min-width: 0;
  height: 570px;
  padding-top: 18px;
}

.deliverables-section .deliverable-card {
  --card-y: 0px;
  --folder-surface: #fff;
  position: absolute;
  inset: 18px 0 auto;
  min-height: 190px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  justify-content: initial;
  gap: 10px 24px;
  margin: 0;
  padding: 34px 34px 30px;
  overflow: visible;
  border: 1px solid #d8d8dc;
  border-radius: 6px 16px 16px 16px;
  background: var(--folder-surface);
  box-shadow: 0 14px 30px rgba(25,25,29,.075);
  text-align: left;
  transform-origin: center top;
  transform: translate3d(0, var(--card-y), 0);
  will-change: transform;
}

.deliverables-section .deliverable-card:nth-child(1) { z-index: 1; }
.deliverables-section .deliverable-card:nth-child(2) { z-index: 2; }
.deliverables-section .deliverable-card:nth-child(3) { z-index: 3; }
.deliverables-section .deliverable-card:nth-child(4) { z-index: 4; }
.deliverables-section .deliverable-card:nth-child(5) { z-index: 5; }

.deliverables-section .deliverable-card::before {
  content: attr(data-step);
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  margin: -5px 0 0;
  color: rgba(200,0,18,.12);
  background: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 74px;
  font-weight: 400;
  line-height: 1;
  transform: none;
}

.deliverables-section .deliverable-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -13px;
  left: -1px;
  width: 150px;
  height: 23px;
  border: 1px solid #d8d8dc;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: var(--folder-surface);
}

.deliverables-section .deliverable-card:nth-child(even)::after {
  width: 122px;
}

.deliverables-section .deliverable-card .icon-wrap {
  display: none;
}

.deliverables-section .deliverable-card h3 {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: block;
  grid-column: 2;
  margin: 0;
  color: #26262a;
  font-size: 20px;
  line-height: 1.3;
  text-align: left;
}

.deliverables-section .deliverable-card p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  grid-column: 2;
  margin: 0 !important;
  color: #707078;
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
}

.deliverables-section .deliverable-card:hover {
  border-color: rgba(200,0,18,.24);
  box-shadow: 0 18px 40px rgba(25,25,29,.09);
  transform: translate3d(0, var(--card-y), 0);
}

@media (max-width: 900px) {
  .deliverables-section > .container {
    width: min(calc(100% - 52px), 980px);
    grid-template-columns: minmax(0, 330px) minmax(430px, 1fr);
    gap: 38px;
  }

  .deliverables-section .deliverable-card {
    grid-template-columns: 68px minmax(0, 1fr);
    padding-inline: 28px;
  }

  .deliverables-section .deliverable-card::before {
    font-size: 64px;
  }
}

@media (max-width: 760px) {
  .deliverables-section {
    padding-block: 66px 32px;
    background:
      radial-gradient(circle at 82% 20%, rgba(200,0,18,.05), transparent 34%),
      #f3f3f1;
  }

  .deliverables-section > .container {
    width: min(calc(100% - 30px), var(--container));
    display: block;
  }

  .deliverables-section .section-heading {
    position: static;
    max-width: 350px;
    margin: 0 auto 38px;
    padding: 0;
    text-align: center;
  }

  .deliverables-section .section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(35px, 10.5vw, 44px);
  }

  .deliverables-section .section-heading p {
    margin-inline: auto;
    font-size: 13px;
    text-align: center;
  }

  .deliverables-section .deliverable-card {
    min-height: 190px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 9px 17px;
    margin: 0;
    padding: 30px 22px 26px;
    border-radius: 6px 15px 15px 15px;
  }

  .deliverables-section .deliverables-scroll {
    height: 1040px;
  }

  .deliverables-section .deliverables-grid {
    top: 72px;
    height: 540px;
    padding-top: 14px;
  }

  .deliverables-section .deliverable-card {
    inset: 14px 0 auto;
  }

  .deliverables-section .deliverable-card::after {
    top: -10px;
    width: 108px;
    height: 19px;
    border-radius: 9px 9px 0 0;
  }

  .deliverables-section .deliverable-card::before {
    margin-top: -2px;
    font-size: 51px;
  }

  .deliverables-section .deliverable-card h3 {
    font-size: 17px;
  }

  .deliverables-section .deliverable-card p {
    font-size: 12px;
    line-height: 1.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deliverables-section .deliverables-scroll {
    height: auto;
  }

  .deliverables-section .deliverables-grid {
    position: relative;
    top: auto;
    height: auto;
  }

  .deliverables-section .deliverable-card {
    position: relative;
    inset: auto;
    margin-bottom: 24px;
    transform: none !important;
    will-change: auto;
  }
}

/* Movimento sutil da página de agradecimento */
.thank-you-hero {
  animation: thankHeroEnter .75s cubic-bezier(.22,.7,.2,1) both;
}

.thank-you-hero > .brand {
  animation: thankFadeDown .65s .18s cubic-bezier(.22,.7,.2,1) both;
}

.thank-you-visual img {
  animation:
    thankImageEnter 1.1s .08s cubic-bezier(.22,.7,.2,1) both,
    thankImageBreath 10s 1.2s ease-in-out infinite alternate;
  will-change: transform;
}

.thank-you-status,
.thank-you-copy h1,
.thank-you-copy p {
  opacity: 0;
  animation: thankCopyEnter .7s cubic-bezier(.22,.7,.2,1) forwards;
}

.thank-you-status { animation-delay: .28s; }
.thank-you-copy h1 { animation-delay: .38s; }
.thank-you-copy p { animation-delay: .5s; }

.thank-you-copy .button {
  opacity: 0;
  animation: thankButtonEnter .6s .62s cubic-bezier(.22,.7,.2,1) forwards;
}

.thank-you-status span {
  animation: thankCheckEnter .55s .48s cubic-bezier(.2,.9,.3,1.35) both;
}

@keyframes thankHeroEnter {
  from { opacity: 0; transform: translateY(14px) scale(.992); }
  to { opacity: 1; transform: none; }
}

@keyframes thankFadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: none; }
}

@keyframes thankCopyEnter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@keyframes thankButtonEnter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@keyframes thankCheckEnter {
  from { opacity: 0; transform: scale(.55) rotate(-12deg); }
  to { opacity: 1; transform: none; }
}

@keyframes thankImageEnter {
  from { opacity: 0; transform: translateX(28px) scale(1.035); }
  to { opacity: 1; transform: none; }
}

@keyframes thankImageBreath {
  from { transform: scale(1); }
  to { transform: scale(1.018); }
}

@media (prefers-reduced-motion: reduce) {
  .thank-you-hero,
  .thank-you-hero > .brand,
  .thank-you-visual img,
  .thank-you-status,
  .thank-you-status span,
  .thank-you-copy h1,
  .thank-you-copy p,
  .thank-you-copy .button {
    opacity: 1;
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }
}

/* A troca de fonte no picture mantém a composição atual do desktop. */
.hero-shell .hero-visual picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-shell .hero-visual picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* Ajustes finais do breakpoint mobile; mantidos no fim para preservar o desktop. */
@media (max-width: 760px) {
  .hero {
    padding-top: 78px;
    padding-bottom: 24px;
  }

  .hero-shell .hero-grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px 20px;
  }

  .hero-shell .hero-visual {
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 812 / 632;
    margin: 0;
  }

  .hero-shell .hero-visual picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-shell .hero-visual picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-shell .hero-copy { order: 2; }
  .hero-mobile-break { display: block; }

  .hero-shell .hero-copy h1 {
    max-width: none;
    margin-bottom: 13px;
    font-size: clamp(28px, 7.5vw, 30px);
    line-height: 1.04;
    letter-spacing: -.052em;
  }

  .hero-shell .hero-lead {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.48;
  }

  .hero-shell .hero-actions { margin-top: 18px; }

  .hero-shell .button-hero-figma {
    min-height: 50px;
    font-size: 13px;
  }

  .results-video-showcase .testimonial-carousel {
    position: relative;
    display: block;
    overflow: hidden;
  }

  .results-video-showcase .testimonial-carousel::after { display: none; }

  .results-video-showcase .testimonial-track {
    align-items: flex-start;
  }

  .results-video-showcase .testimonial-slide {
    align-self: flex-start;
  }

  .results-video-showcase .testimonial-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    padding: 8px;
  }

  .results-video-showcase .testimonial-media .testimonial-video-trigger {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    touch-action: pan-y;
  }

  .results-video-showcase .testimonial-content {
    min-height: 0;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 24px 60px;
    text-align: center;
  }

  .results-video-showcase .testimonial-content h3 {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .results-video-showcase .testimonial-content p {
    margin-inline: auto;
    text-align: center;
  }

  .results-video-showcase .testimonial-outcomes {
    width: min(100%, 286px);
    justify-items: center;
  }

  .results-video-showcase .testimonial-outcomes li {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .results-video-showcase .testimonial-outcomes li::before {
    position: static;
    display: inline-block;
    margin-right: 8px;
    transform: translateY(-2px);
  }

  .results-video-showcase .testimonial-footer {
    position: absolute;
    z-index: 7;
    top: calc((100vw - 30px) * .625 + 1px);
    right: 8px;
    left: 8px;
    width: auto;
    height: 70px;
    display: block;
    margin: 0;
    padding: 8px 0;
    overflow: hidden;
    border: 0;
    background: #18191c;
  }

  .results-video-showcase .testimonial-logo-nav {
    height: 54px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 4px;
    overflow: hidden;
  }

  .results-video-showcase .testimonial-logo-nav button,
  .results-video-showcase .testimonial-logo-nav button.active {
    width: 100%;
    min-width: 0;
    height: 54px;
    border-radius: 6px;
  }

  .results-video-showcase .slider-status { display: none; }

  .results-video-showcase .slider-controls {
    position: absolute;
    z-index: 8;
    top: auto;
    right: auto;
    bottom: 14px;
    left: 50%;
    width: auto;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(10,10,12,.48);
    backdrop-filter: none;
    pointer-events: none;
    transform: translateX(-50%);
  }

  .results-video-showcase .slider-button,
  .results-video-showcase .slider-button:last-child {
    width: auto;
    height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    color: #fff;
    background: rgba(10,10,12,.34);
    backdrop-filter: blur(6px);
    pointer-events: auto;
  }

  .results-video-showcase .slider-label {
    display: inline;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .hero-shell .hero-support { display: none; }
}

/* Comparação de dores: seis cards com ícones lineares e leitura à esquerda. */
#problemas-cards {
  color: var(--ink);
  background: #ebece9;
  border-top: 1px solid #dedfdc;
}
#problemas-cards .section-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
#problemas-cards .section-heading h2 {
  max-width: 680px;
  margin: 0 auto 24px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -.045em;
}
#problemas-cards .section-heading h2 span { display: block; color: var(--red); }
#problemas-cards .section-heading h2::after { display: none; }
#problemas-cards .section-heading p {
  max-width: 590px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
  color: #68686d;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.comparison-card {
  position: relative;
  padding: 34px 30px 36px;
  border: 1px solid #dededb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(18,18,20,.025);
  text-align: left;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.comparison-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 30px;
  width: 36px;
  height: 3px;
  background: var(--red);
}
.comparison-icon { margin: 0 0 26px; color: var(--red); }
.comparison-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.comparison-card h3 {
  margin: 0 0 18px;
  color: #28282c;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.025em;
}
.comparison-card p {
  margin: 0;
  color: #66666b;
  font-size: 13px;
  line-height: 1.85;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .comparison-card:hover {
    transform: translateY(-4px);
    border-color: #b8b8b4;
    box-shadow: 0 12px 24px rgba(18,18,20,.06);
  }
}

/* Mais espaço nas transições entre seções e entre texto e ação. */
#problemas, #problemas-cards, #gdr, #metodologia, #resultados, #faq, #diagnostico {
  padding-block: 112px;
}
#gdr { padding-block: 78.4px; }
#gdr .consultants-layout { min-height: 0; padding-block: 50.4px; }
#resultados.results-video-showcase { padding-block: 94px 80px; }
#entregas { padding-top: 112px; padding-bottom: 72px; }
#problemas .section-heading { margin-bottom: 64px; }
#problemas .section-heading h2 { margin-bottom: 24px; }
#problemas .problem-grid { row-gap: 48px; }
#problemas .problem-cta, #problemas-cards .problem-cta {
  gap: 24px;
  margin-top: 56px;
}
#problemas-cards .problem-cta p { max-width: 590px; }
#gdr .consultants-copy p { margin-top: 24px; }
#gdr .consultants-copy .button { margin-top: 32px; }
#resultados .testimonial-heading-row { margin-bottom: 56px; }
#resultados .testimonial-cta { margin-top: 40px; padding-top: 36px; }
#faq .faq-heading p { margin-top: 24px; }
#faq .faq-heading .button { margin-top: 32px; }

@media (min-width: 761px) and (max-width: 1020px) {
  .comparison-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  #problemas, #problemas-cards, #gdr, #metodologia, #resultados, #faq, #diagnostico {
    padding-block: 76px;
  }
  #gdr { padding-block: 53.2px; }
  #gdr .consultants-layout { padding-block: 40.6px; }
  #resultados.results-video-showcase { padding-block: 70px 60px; }
  #entregas { padding-top: 76px; padding-bottom: 56px; }
  #problemas .section-heading, #problemas-cards .section-heading { margin-bottom: 36px; }
  #problemas .problem-grid { row-gap: 24px; }
  .comparison-grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .comparison-card { padding: 28px; }
  .comparison-card::before { left: 28px; }
  .comparison-icon { margin-bottom: 22px; }
  .comparison-card h3 { font-size: 18px; margin-bottom: 16px; }
  #problemas .problem-cta, #problemas-cards .problem-cta { margin-top: 36px; gap: 22px; }
  #resultados .testimonial-heading-row { margin-bottom: 36px; }
  #resultados .testimonial-cta { margin-top: 32px; padding-top: 28px; }
}
