:root {
  --cyan: #0BBBEF;
  --dark: #111111;
  --white: #FFFFFF;
  --off: #F5F5F5;
  --muted: #666666;
  --border: #E5E5E5;
  --radius: 20px;
  --navy: #222D59;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
}

.rounded-img, .about-photo, .reconhece-img {
  border-radius: 24px;
  overflow: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .9rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 38px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--cyan);
  transition: width .25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-btn {
  display: inline-block;
  padding: .65rem 1.8rem;
  background: var(--cyan);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: .2s;
  position: relative;
  overflow: hidden;
}

.nav-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}

.nav-btn:hover::after {
  transform: translateX(100%);
}

.nav-btn:hover {
  background: var(--dark);
}

/* ── HERO ── */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  align-items: stretch;
}

.hero-photo {
  overflow: hidden;
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 8s ease;
}

#hero:hover .hero-photo img {
  transform: scale(1.04);
}

.hero-content {
  padding: 8rem 6vw 6rem 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.hero-eyebrow {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp .7s ease forwards .1s;
}

.hero-title {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.035em;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp .7s ease forwards .25s;
}

.hero-title span {
  color: var(--cyan);
}

.hero-anchor {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  max-width: 460px;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp .7s ease forwards .38s;
  border-left: 3px solid var(--cyan);
  padding-left: 1rem;
}

.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp .7s ease forwards .5s;
}

.hero-sub strong {
  color: var(--dark);
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s ease forwards .65s;
}

.btn-primary {
  display: inline-block;
  padding: .95rem 2.2rem;
  background: var(--cyan);
  color: var(--white);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: .2s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: var(--dark);
  box-shadow: 0 0 28px rgba(11,187,239,.45), 0 8px 24px rgba(0,0,0,.18);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: .95rem 2.2rem;
  border: 2px solid var(--border);
  color: var(--muted);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: .2s;
}

.btn-secondary:hover {
  border-color: var(--dark);
  color: var(--dark);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── TICKER ── */
.ticker {
  background: var(--cyan);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: 0 2.2rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
}

.t-dot {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  flex-shrink: 0;
}

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


/* ── RENDERIZAÇÃO ── */
.defer-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 3rem 5vw;
  background: var(--dark);
}

img { max-width: 100%; }
section, .statement, .faq-sec, .cta-sec { overflow: clip; }

.stat-item {
  text-align: center;
  color: var(--white);
}

.counter-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.counter-row {
  display: flex;
  align-items: baseline;
  gap: .05em;
  justify-content: center;
  line-height: 1;
}

.counter-num {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -.04em;
  line-height: 1;
  display: inline-block;
}

.counter-prefix, .counter-suffix {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -.03em;
  line-height: 1;
}

.counter-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: .6rem;
  text-align: center;
}

/* ── LAYOUT UTILS ── */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
}

.sec {
  padding: 7rem 5vw;
}

.sec-off {
  padding: 7rem 5vw;
  background: var(--off);
}

.label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.2rem;
}

.h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.025em;
  margin-bottom: 1.4rem;
}

.h1 em {
  font-style: normal;
  font-weight: 300;
}

.body {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.body strong {
  color: var(--dark);
  font-weight: 600;
}

/* ── SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.split.flip {
  direction: rtl;
}

.split.flip > * {
  direction: ltr;
}

.split-img {
  overflow: hidden;
  height: 580px;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}

.split-img:hover img {
  transform: scale(1.03);
}

.split-txt {
  padding: 5rem 6vw;
}

/* ── STATEMENT ── */
.statement {
  padding: 7rem 5vw;
  background: var(--white);
  border-top: 4px solid var(--cyan);
}

.stmt-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: block;
}

.stmt-text {
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.01em;
  max-width: 900px;
}

.stmt-text strong {
  font-weight: 900;
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease;
  border: 2px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}

.card.cyan {
  background: var(--cyan);
  color: var(--white);
  border: none;
}

.card.dark {
  background: var(--dark);
  color: var(--white);
  border: none;
}

.card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.5;
}

.card-icon.inv svg {
  stroke: var(--white);
}

.card-icon.cyan-ic svg {
  stroke: var(--cyan);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .9rem;
  letter-spacing: -.01em;
}

.card-text {
  font-size: .88rem;
  line-height: 1.75;
}

.card.cyan .card-text, .card.dark .card-text {
  color: rgba(255,255,255,.82);
}

/* ── MÉTODO PLUGA ── */
.method-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  border-top: 2px solid var(--border);
  padding: 2.5rem 0;
  cursor: default;
}

.method-item:hover {
  background: rgba(11,187,239,.04);
}

.ml {
  font-size: 5rem;
  font-weight: 900;
  color: var(--cyan);
  opacity: .55;
  line-height: 1;
  letter-spacing: -.04em;
  transition: opacity .25s ease, transform .25s ease, text-shadow .25s ease;
}

@media(hover: hover) {
  .method-item:hover .ml {
    opacity: 1;
    transform: scale(1.08);
    text-shadow: 0 0 32px rgba(11,187,239,.45);
  }
}

@media(hover: none) {
  .ml { opacity: 1; }
}

.mr {
  padding-left: 2.5rem;
  border-left: 2px solid var(--border);
}

.mr-tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .5rem;
}

.mr-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .9rem;
  line-height: 1.1;
}

.mr-text {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ── FILTRO PARA QUEM ── */
.para-quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 1.5rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.65;
}

.check-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  margin-top: .45rem;
  flex-shrink: 0;
}

.check-list li.contra .check-dot {
  background: #ccc;
}

/* ── GALLUP DESTAQUE ── */
.gallup-block {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.gallup-num {
  font-size: 7rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -.04em;
  line-height: 1;
}

.gallup-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: .5rem;
}

.gallup-text {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.85;
}

.gallup-text strong {
  color: var(--white);
}

/* ── FORMATO ── */
.formato-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.formato-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 12px;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
}

.formato-item:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}

.fi-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fi-title {
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.fi-text {
  font-size: .83rem;
}

/* ── DEPOIMENTOS ── */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.test-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
  border: 2px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.test-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(11,187,239,.28);
  box-shadow: 0 18px 48px rgba(0,0,0,.10), 0 0 26px rgba(11,187,239,.08);
}

.test-card.highlight {
  background: var(--cyan);
  color: var(--white);
}

.test-card.dark {
  background: var(--dark);
  color: var(--white);
}

.test-q {
  font-size: 3.5rem;
  line-height: .5;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 1.2rem;
  display: block;
}

.test-card.highlight .test-q, .test-card.dark .test-q {
  color: rgba(255,255,255,.3);
}

.test-text {
  font-size: .95rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: .6rem;
}

.test-card.highlight .test-text, .test-card.dark .test-text {
  color: rgba(255,255,255,.9);
}

.test-context {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: .8rem;
  line-height: 1.4;
}

.test-card.highlight .test-context, .test-card.dark .test-context {
  color: rgba(255,255,255,.55);
}

.test-author {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: auto;
}

.test-card.highlight .test-author, .test-card.dark .test-author {
  color: rgba(255,255,255,.7);
}

.test-wide {
  grid-column: auto;
}


/* ── DADOS CORPORATIVOS ── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}

.insight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 2px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  min-height: 100%;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.insight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11,187,239,.25);
  box-shadow: 0 18px 48px rgba(0,0,0,.08), 0 0 24px rgba(11,187,239,.08);
}

.insight-kicker {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .8rem;
}

.insight-number {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
  color: var(--navy);
  margin-bottom: .9rem;
}

.insight-number.light {
  color: var(--white);
}

.insight-text {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--muted);
}

.insight-card.dark {
  background: var(--dark);
  border-color: transparent;
}

.insight-card.dark .insight-text {
  color: rgba(255,255,255,.72);
}

.insight-card.dark .insight-kicker {
  color: rgba(255,255,255,.55);
}

.insight-list {
  list-style: none;
  display: grid;
  gap: .8rem;
  margin-top: 1rem;
}

.insight-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  line-height: 1.6;
}

.insight-list .check-dot {
  margin-top: .42rem;
}

.results-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.result-mini {
  background: rgba(11,187,239,.08);
  border: 1px solid rgba(11,187,239,.18);
  border-radius: 16px;
  padding: 1.2rem 1rem;
  text-align: center;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.result-mini:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(11,187,239,.30);
  box-shadow: 0 14px 38px rgba(0,0,0,.08), 0 0 26px rgba(11,187,239,.10);
}

.result-mini strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--cyan);
  margin-bottom: .35rem;
}

.result-mini span {
  display: block;
  font-size: .74rem;
  line-height: 1.45;
  color: var(--muted);
}

@media(max-width: 860px) {
  .insights-grid { grid-template-columns: 1fr; }
  .results-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media(min-width: 861px) and (max-width: 1100px) {
  .insights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}



/* ── VÍDEO ── */
.video-section {
  padding: 6rem 5vw;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FBFD 100%);
}

.video-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.video-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.video-frame-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.video-lite {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #0E1328;
  box-shadow: 0 22px 60px rgba(0,0,0,.16);
  cursor: pointer;
}

.video-lite img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.72);
}

.video-lite::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,14,30,.10) 0%, rgba(8,14,30,.38) 100%);
  pointer-events: none;
}

.video-lite-btn {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  color: var(--white);
  text-align: center;
}

.video-play-circle {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: rgba(11,187,239,.95);
  box-shadow: 0 18px 40px rgba(11,187,239,.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.video-play-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
  text-align: left;
}

.video-play-kicker {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

.video-play-title {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--white);
}

.video-caption {
  margin-top: .95rem;
  text-align: center;
  font-size: .86rem;
  color: var(--muted);
}

.video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media(max-width: 860px) {
  .video-section { padding: 4rem 5vw; }
  .video-frame-wrap { max-width: 100%; }
  .video-lite { border-radius: 20px; }
  .video-lite-btn {
    flex-direction: column;
    gap: .85rem;
    padding: 1.1rem;
  }
  .video-play-circle {
    width: 78px;
    height: 78px;
  }
  .video-play-circle svg {
    width: 26px;
    height: 26px;
  }
  .video-play-text {
    align-items: center;
    text-align: center;
  }
  .video-play-title {
    font-size: 1rem;
    line-height: 1.2;
    max-width: 280px;
  }
  .video-play-kicker {
    font-size: .62rem;
    letter-spacing: .18em;
  }
  .video-caption {
    font-size: .8rem;
    line-height: 1.5;
    padding: 0 .4rem;
  }
}


/* ── MICROINTERAÇÕES ADICIONAIS ── */
.formato-item-outline {
  border: 1.5px solid rgba(17,17,17,.14);
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.05), inset 0 1px 0 rgba(255,255,255,.85);
}
.formato-item-outline:hover {
  border-color: rgba(11,187,239,.35);
  box-shadow: 0 0 0 1px rgba(11,187,239,.12), 0 14px 38px rgba(0,0,0,.08), 0 0 36px rgba(11,187,239,.10);
}
.formato-item-cyan,
.formato-item-dark {
  position: relative;
  overflow: hidden;
}
.formato-item-cyan::after,
.formato-item-dark::after,
.result-mini::after,
.test-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.12) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .65s ease;
  pointer-events: none;
}
.formato-item-cyan:hover::after,
.formato-item-dark:hover::after,
.result-mini:hover::after,
.test-card:hover::after {
  transform: translateX(120%);
}

.result-mini {
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.result-mini:hover {
  transform: translateY(-8px) scale(1.025);
  border-color: rgba(11,187,239,.3);
  box-shadow: 0 18px 40px rgba(11,187,239,.14);
  background: rgba(11,187,239,.12);
}
.result-mini strong {
  transition: transform .35s ease, text-shadow .35s ease;
}
.result-mini:hover strong {
  transform: scale(1.06);
  text-shadow: 0 0 24px rgba(11,187,239,.22);
}
.result-mini.play,
.testimonial-card.play {
  animation-duration: .85s;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  opacity: .78;
  transform-origin: center center;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, opacity .4s ease, border-color .4s ease;
}
.testimonial-card:hover {
  opacity: 1;
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 22px 60px rgba(0,0,0,.14);
  border-color: rgba(11,187,239,.22);
}
.testimonial-center {
  transform: scale(1.035);
  opacity: 1;
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.testimonial-center:hover {
  transform: translateY(-12px) scale(1.055);
}
.testimonial-card .test-q {
  transition: transform .35s ease, opacity .35s ease;
}
.testimonial-card:hover .test-q {
  transform: translateY(-2px) scale(1.08);
  opacity: 1;
}
.testimonial-card .test-author {
  transition: letter-spacing .35s ease, color .35s ease;
}
.testimonial-card:hover .test-author {
  letter-spacing: .22em;
}
@media(max-width: 860px) {
  .testimonial-card,
  .testimonial-center {
    opacity: 1;
    transform: none;
  }
  .testimonial-card:hover,
  .testimonial-center:hover {
    transform: translateY(-4px) scale(1.01);
  }
}


/* ── IDENTIDADE + PRECIFICAÇÃO ── */
.identity-section {
  padding: 6.5rem 5vw;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}
.identity-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid rgba(17,17,17,.07);
  box-shadow: 0 20px 70px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
}
.identity-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(11,187,239,.12) 0%, transparent 34%);
  pointer-events: none;
}
.identity-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
}
.identity-box {
  display: grid;
  gap: 1rem;
}
.identity-box .body {
  margin-bottom: 0;
}
.identity-highlight {
  margin-top: .8rem;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: rgba(11,187,239,.08);
  border: 1px solid rgba(11,187,239,.16);
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.7;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.identity-mini {
  display: grid;
  gap: .85rem;
}
.identity-point {
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  background: var(--off);
  border: 1px solid rgba(17,17,17,.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.04);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.identity-point:hover {
  transform: translateY(-6px);
  border-color: rgba(11,187,239,.28);
  box-shadow: 0 18px 44px rgba(0,0,0,.08), 0 0 24px rgba(11,187,239,.08);
}
.identity-point strong {
  display: block;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .45rem;
}
.identity-point span {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
}

.pricing-section {
  padding: 6rem 5vw 2rem;
  background: var(--white);
}
.pricing-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 28px;
  background: linear-gradient(180deg, #111111 0%, #171c24 100%);
  color: var(--white);
  padding: 3.2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(11,187,239,.18) 0%, transparent 42%);
  pointer-events: none;
}
.pricing-card > * {
  position: relative;
  z-index: 1;
}
.pricing-kicker {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-bottom: 1rem;
}
.pricing-title {
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  line-height: .98;
  letter-spacing: -.03em;
  margin-bottom: .8rem;
  font-weight: 900;
}
.pricing-old {
  font-size: 1rem;
  color: rgba(255,255,255,.45);
  text-decoration: line-through;
  margin-bottom: .35rem;
}
.pricing-new {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
  color: rgba(255,255,255,.96);
  margin-top: 1rem;
}
.pricing-installments {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.25rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: rgba(11,187,239,.14);
  border: 1px solid rgba(11,187,239,.26);
  box-shadow: 0 14px 34px rgba(11,187,239,.14), inset 0 1px 0 rgba(255,255,255,.06);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--cyan);
}
.pricing-pix {
  margin-top: .9rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
}
.pricing-pix strong {
  color: var(--white);
  font-weight: 800;
}
.pricing-note {
  max-width: 520px;
  margin: 1.35rem auto 0;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
}
.pricing-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1.6rem 0 2rem;
}
.pricing-pill {
  padding: .7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 700;
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(11,187,239,.22);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(11,187,239,.28), 0 0 30px rgba(11,187,239,.12);
  background: var(--white);
  color: var(--dark);
}
.pricing-sub {
  margin-top: .95rem;
  font-size: .84rem;
  color: rgba(255,255,255,.54);
}

@media(max-width: 860px) {
  .identity-section { padding: 4rem 5vw; }
  .identity-shell { padding: 2rem 1.35rem; border-radius: 24px; }
  .identity-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .pricing-section { padding: 4rem 5vw 1rem; }
  .pricing-card { padding: 2.35rem 1.2rem; border-radius: 22px; }
  .pricing-installments { width: 100%; }
  .pricing-pix { font-size: .98rem; line-height: 1.6; }
  .pricing-meta { gap: .55rem; }
  .pricing-pill { width: 100%; }
  .pricing-btn { width: 100%; justify-content: center; }
}


/* ── FAQ ── */
.faq-sec {
  padding: 7rem 5vw;
  background: var(--white);
}

.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-item {
  border-bottom: 2px solid var(--border);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  gap: 1rem;
  transition: color .2s;
  user-select: none;
}

.faq-q:hover {
  color: var(--cyan);
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--muted);
  stroke-width: 2.5;
  transition: transform .3s;
}

.faq-item.open .faq-icon {
  background: var(--cyan);
  border-color: var(--cyan);
}

.faq-item.open .faq-icon svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.faq-item.open .faq-q {
  color: var(--cyan);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.16,1,.3,1);
}

.faq-a-inner {
  padding: 0 0 1.8rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.85;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

/* ── CTA FINAL ── */
.cta-sec {
  background: var(--dark);
  padding: 8rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(11,187,239,.12) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-title em {
  font-style: normal;
  color: var(--cyan);
  font-weight: 300;
}

.cta-text {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.85;
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1.1rem 2.8rem;
  background: var(--cyan);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: .2s;
  position: relative;
  overflow: hidden;
}

.btn-wa::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}

.btn-wa:hover::after {
  transform: translateX(100%);
}

.btn-wa:hover {
  background: var(--white);
  color: var(--dark);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 3rem 5vw;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.foot-logo img {
  height: 30px;
  display: block;
}

.foot-links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.foot-links a {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: .2s;
}

.foot-links a:hover {
  color: var(--cyan);
}

.foot-copy {
  font-size: .7rem;
  color: rgba(255,255,255,.25);
}

/* ── SCROLL REVEAL ── */
@keyframes fuFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.sr-up {
  animation: fuFadeUp .8s cubic-bezier(.16,1,.3,1) both;
  animation-play-state: paused;
}

.sr-up.play {
  animation-play-state: running;
}

@keyframes fuFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.sr-fade {
  animation: fuFadeIn .9s ease both;
  animation-play-state: paused;
}

.sr-fade.play {
  animation-play-state: running;
}

@keyframes fuSlideL {
  from { opacity: 0; transform: translateX(-36px); }
  to { opacity: 1; transform: translateX(0); }
}

.sr-left {
  animation: fuSlideL .8s cubic-bezier(.16,1,.3,1) both;
  animation-play-state: paused;
}

.sr-left.play {
  animation-play-state: running;
}

@keyframes fuScale {
  from { opacity: 0; transform: scale(.93) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.sr-scale {
  animation: fuScale .75s cubic-bezier(.16,1,.3,1) both;
  animation-play-state: paused;
}

.sr-scale.play {
  animation-play-state: running;
}

.d1 { animation-delay: .1s; }
.d2 { animation-delay: .2s; }
.d3 { animation-delay: .3s; }
.d4 { animation-delay: .4s; }

.su {
  animation: fuFadeUp .7s cubic-bezier(.16,1,.3,1) both;
  animation-play-state: paused;
}

.su.go {
  animation-play-state: running;
}

/* ── CONTADORES ── */
@keyframes aFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.anim-fade {
  animation: aFadeUp .9s cubic-bezier(.16,1,.3,1) both;
  animation-play-state: paused;
}

.anim-fade.play {
  animation-play-state: running;
}

/* ── RESPONSIVE ── */
@media(max-width: 860px) {
  html, body { overflow-x: hidden; }
  nav { padding: .85rem 4vw; }
  .nav-links { display: none; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { height: 105vw; max-height: 560px; width: 100%; overflow: hidden; }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
  .hero-content { padding: 2.4rem 4.8vw 3rem; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-anchor { max-width: 100%; font-size: 1rem; }
  .hero-sub { font-size: 1rem; max-width: 100%; }
  .hero-btns { flex-direction: column; gap: .8rem; }
  .btn-primary, .btn-secondary { text-align: center; width: 100%; }
  .split { grid-template-columns: 1fr; }
  .split.flip { direction: ltr; }
  .split-img { height: 100vw; max-height: 500px; width: 100%; overflow: hidden; }
  .split-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
  .split-txt { padding: 2.5rem 5vw; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 1.5rem; padding: 2.4rem 5vw; }
  .stat-item { flex: 1 1 calc(50% - .75rem); min-width: 140px; }
  .counter-num { font-size: 2.5rem; }
  .counter-prefix, .counter-suffix { font-size: 1.5rem; }
  .test-grid { grid-template-columns: 1fr; }
  .test-wide { grid-column: 1 !important; }
  .method-item { grid-template-columns: 50px 1fr; }
  .ml { font-size: 3rem; }
  .mr { padding-left: 1.2rem; }
  .mr-title { font-size: 1.3rem; }
  .sec { padding: 3.5rem 5vw; }
  .sec-off { padding: 3.5rem 5vw; }
  .stmt-text { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .statement { background: var(--white) !important; padding: 3rem 5vw !important; border-top: 4px solid var(--cyan); }
  .para-quem-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
  .gallup-block { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; }
  .gallup-num { font-size: 5rem; }
  footer { flex-direction: column; text-align: center; gap: 1.2rem; }
  .foot-links { justify-content: center; }
  .cta-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .cta-sec { padding: 5rem 5vw; }
  .faq-sec { padding: 4rem 5vw; }

  .nav-btn { padding: .7rem 1.2rem; font-size: .68rem; }
  .stats-bar { gap: 1.6rem; padding: 2.4rem 5vw; }
  .counter-num { font-size: 2.5rem; }
  .counter-prefix, .counter-suffix { font-size: 1.55rem; }
  .video-section { padding: 4rem 5vw; }
  .video-shell { padding: 1rem; border-radius: 22px; }
  .video-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .video-copy { padding: 1rem .4rem .2rem; }
  .video-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .video-note { text-align: left; }
  .faq-q { font-size: .96rem; align-items: flex-start; }
  .reconhece-mobile-wrap { position: relative; overflow: hidden; border-radius: 20px; }
  .reconhece-mobile-wrap .split-img { height: 70vw; max-height: 340px; border-radius: 20px 20px 0 0; }
  .reconhece-mobile-wrap .split-txt { background: var(--dark); color: var(--white); padding: 2.5rem; border-radius: 0 0 20px 20px; }
  .reconhece-mobile-wrap .split-txt .label { color: var(--cyan); }
  .reconhece-mobile-wrap .split-txt .h1 { color: var(--white); }
  .reconhece-mobile-wrap .split-txt .body { color: rgba(255,255,255,.72); }
  .reconhece-mobile-wrap .split-txt strong { color: var(--white); }
  .ml { opacity: 1; }
}

@media(min-width: 861px) and (max-width: 1100px) {
  #hero { grid-template-columns: 1fr 1fr; }
  .hero-photo { height: auto; min-height: 60vh; }
  .hero-photo img { object-position: center 8%; height: 100%; object-fit: cover; }
  .split-img { height: 500px; }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .test-wide { grid-column: 1 / -1; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallup-block { padding: 3rem; }

  .video-grid { grid-template-columns: 1fr; }
  .video-copy { padding: 1.2rem .6rem .4rem; }
}

@media(hover: none) {
  .card:hover { transform: none; box-shadow: 0 4px 24px rgba(0,0,0,.07); }
  .btn-primary:hover, .btn-wa:hover { transform: none; }
}
