/* ===================================================================
   Movva — Site Institucional (Landing Page)
   Design de referência: Figma 1920px
   =================================================================== */

:root {
  --blue: #0b65c0;
  --blue-band: #0d5db1;
  --blue-deep: #04203e;
  --blue-featured: #0b3b82;
  --navy: #0a1f3d;
  --blue-light: #ebf3fc;
  --blue-band-light: #e9f1f9;
  --yellow: #ebb14d;
  --pink: #ff4bb9;
  --text: #212123;
  --gray: #4d5973;
  --gray-light: #9ba8bd;
  --font-title: 'Rubik', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

h1, h2, h3 { font-family: var(--font-title); }

/* ---------- Eyebrow / badges ---------- */
.eyebrow {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
}

.eyebrow-light { background: #fff; color: var(--blue); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-yellow { background: var(--yellow); }
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(235, 177, 77, .45); }
.btn-bordered { border: 1px solid #fff; }
.btn-pill { border-radius: 70px; font-family: var(--font-title); font-weight: 500; }

/* ===================================================================
   HEADER + HERO
   =================================================================== */
.hero-band {
  background: var(--blue-band);
  position: relative;
}

/* faixa azul termina antes do fim do card do hero */
.hero-band::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 95px;
  background: var(--blue-band-light);
  z-index: 0;
}

.site-header { position: relative; z-index: 5; padding: 25px 0 18px; }

.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo img { width: 180px; height: 35px; object-fit: contain; }

.main-nav { display: flex; gap: 30px; }

.main-nav a {
  color: #fff;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  transition: opacity .2s;
}
.main-nav a:hover { opacity: .75; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 3px; border-radius: 2px; background: #fff; }

.hero { position: relative; z-index: 1; }

.hero-card {
  position: relative;
  margin: 0 auto;
  max-width: 1686px;
  width: calc(100% - 60px);
  min-height: 880px;
  border-radius: 30px;
  background: linear-gradient(180deg, #0b65c0 26.4%, #04203e 100%);
  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1130px;
  padding: 108px 40px 90px clamp(28px, 15.4%, 260px);
}

.hero-content h1 {
  font-weight: 700;
  font-size: clamp(38px, 3.75vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  max-width: 826px;
}

.hero-lead {
  margin-top: 48px;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.4;
  color: #fff;
  max-width: 604px;
}

.hero-sub {
  margin-top: 28px;
  font-size: clamp(14px, .94vw, 18px);
  line-height: 1.4;
  color: #fff;
  max-width: 604px;
}

.hero-content .btn { margin-top: 60px; }

/* seta/notch na base do card */
.hero-notch {
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 28px;
  height: 28px;
  background: var(--blue-deep);
  border-radius: 4px;
  transform: translateX(-50%) rotate(45deg);
  z-index: 2;
}

/* ---------- composição visual do hero (referência 830x800) ---------- */
.hero-visual {
  position: absolute;
  right: 0;
  top: 90px;
  width: 830px;
  aspect-ratio: 830 / 800;
  z-index: 2;
  pointer-events: none;
  container-type: inline-size;
}

.hero-visual img { position: absolute; }

.hv-mlines { left: 8.43%; top: 39.25%; width: 83.25%; }
.hv-student { left: 16.5%; top: 13.5%; width: 70.25%; }
.hv-phone { left: 55.4%; top: 12.25%; width: 28.8%; }

.hv-engajamento {
  position: absolute;
  left: 16.5%; top: 38.4%;
  width: 18.8%;
  aspect-ratio: 156 / 150;
  background: var(--blue);
  border-radius: 4cqw;
  padding: 3.97cqw 2.65cqw 0;
  filter: drop-shadow(0 0 20px rgba(132, 132, 132, .2));
  font-family: var(--font-title);
  color: #fff;
}
.hv-eng-title { font-weight: 500; font-size: 2.13cqw; }
.hv-eng-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: .25cqw; }
.hv-eng-num { font-weight: 600; font-size: 2.13cqw; }
.hv-eng-delta { font-weight: 500; font-size: 2.2cqw; color: var(--yellow); }
.hv-eng-vs { font-family: var(--font-title); font-weight: 400; font-size: 1.51cqw; margin-top: 1.45cqw; line-height: 1.25; }
.hv-eng-vs span { color: var(--yellow); font-size: 1.87cqw; }

.hv-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 .48cqw 8.67cqw 0 var(--pink);
}
.hv-bubble img { position: static; width: 45%; height: 45%; }

.hv-trending { left: 22.2%; top: 22%; width: 8.9%; }
.hv-trending img { transform: scaleY(-1); }

.hv-glowdot { position: absolute; left: 58.8%; top: 70.1%; width: 12.5%; aspect-ratio: 1; }
.hv-glow { left: -11.5%; top: -11.5%; width: 123%; }
.hv-percent { position: absolute; left: 25%; top: 25%; width: 50%; }
.hv-percent img { width: 44%; height: 44%; }

.hv-check {
  position: absolute;
  left: 57.3%; top: 82%;
  width: 4.94%;
  aspect-ratio: 1;
  background: var(--blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 19px 2px rgba(132, 132, 132, .2);
}
.hv-check img { position: static; width: 56%; height: 56%; }

.hv-calendar { left: 8.07%; top: 90.75%; width: 6.63%; }
.hv-indicador { left: 1.57%; top: 74.75%; width: 8.43%; }

/* ===================================================================
   02 — SINAIS
   =================================================================== */
.sinais {
  background: var(--blue-band-light);
  padding: 150px 0 120px;
}

.sinais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sinais-visual {
  position: relative;
  width: 100%;
  max-width: 660px;
  aspect-ratio: 1 / 1;
}

.sv-ellipse {
  position: absolute;
  left: -7%;
  top: -5.7%;
  width: 111.4%;
  height: 111.4%;
  max-width: none;
}

.sv-iceberg {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  max-width: none;
  object-fit: contain;
}

.sv-bubble {
  position: absolute;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 4px 72px 0 var(--yellow);
}
.sv-bubble img { width: 45%; height: 45%; }

.sinais-text h2 {
  font-weight: 700;
  font-size: clamp(32px, 2.5vw, 48px);
  line-height: 1;
  color: var(--blue);
  max-width: 540px;
  margin-top: 18px;
}

.sinais-body { margin-top: 32px; max-width: 548px; }
.sinais-body p {
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  color: var(--text);
}
.sinais-body p + p { margin-top: 28px; }

.sinais-list { margin-top: 48px; }
.sinais-list h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  color: var(--blue);
}
.sinais-list ul {
  margin-top: 22px;
  padding-left: 35px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sinais-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.4;
  color: #1a1a1a;
}
.sinais-list li img { width: 18px; height: 18px; flex-shrink: 0; }

/* ===================================================================
   03 — COMO FUNCIONA
   =================================================================== */
.como-funciona {
  background: var(--blue-band-light);
  padding: 100px 0 120px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
}

.section-header h2 {
  font-weight: 700;
  font-size: clamp(32px, 2.5vw, 48px);
  line-height: 1.1;
  color: var(--blue);
}

.cf-lead {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.5;
  max-width: 920px;
}

.cf-sub {
  font-size: 16px;
  line-height: 1.5;
  max-width: 920px;
}

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  align-items: start;
}

.cf-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cf-visual::before {
  content: '';
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at center, rgba(249, 237, 216, .9) 0%, rgba(249, 237, 216, 0) 70%);
  z-index: 0;
}

.cf-visual img {
  position: relative;
  z-index: 1;
  width: 168%;
  max-width: none;
  margin: -60px 0 60px -22%;
  transform: rotate(22.31deg);
}

.cf-visual .btn { position: relative; z-index: 2; margin-top: -110px; }

/* ---------- timeline ---------- */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 110px;
  padding: 30px 0 60px;
}

.timeline-bar {
  position: absolute;
  left: calc(50% - 9px);
  top: 30px;
  bottom: 0;
  width: 18px;
  border-radius: 20px;
  background: rgba(235, 177, 77, .3);
}

.timeline-bar span {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 61%;
  border-radius: 20px;
  background: var(--yellow);
}

.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: start;
}

.tl-icon {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 14px rgba(132, 132, 132, .2));
}
.tl-icon img { width: 72px; height: 72px; }

.tl-left .tl-icon { grid-row: 1; grid-column: 1; justify-self: end; margin-right: 24px; }
.tl-left .tl-text { grid-row: 1; grid-column: 3; text-align: left; padding-left: 24px; }

.tl-right .tl-icon { grid-row: 1; grid-column: 3; justify-self: start; margin-left: 24px; }
.tl-right .tl-text { grid-row: 1; grid-column: 1; text-align: right; padding-right: 24px; display: flex; flex-direction: column; align-items: flex-end; }

.tl-badge {
  position: relative;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.tl-badge img { width: 100%; height: 100%; }
.tl-badge span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.tl-text h3 {
  font-weight: 500;
  font-size: clamp(22px, 1.46vw, 28px);
  line-height: 1;
  color: var(--navy);
  max-width: 320px;
}
.tl-right .tl-text h3 { max-width: 347px; }

.tl-text p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  max-width: 316px;
}

/* ===================================================================
   04 — CTA CUSTO ZERO
   =================================================================== */
.cta-zero {
  position: relative;
  background: var(--blue);
  padding: 150px 0 130px;
  overflow: hidden;
}

.cz-glow {
  position: absolute;
  right: -280px;
  top: -70px;
  width: 1000px;
  height: 1000px;
  pointer-events: none;
}

.cz-grid {
  position: relative;
  display: grid;
  grid-template-columns: 685px 1fr;
  gap: 60px;
  align-items: center;
}

.cz-text { display: flex; flex-direction: column; align-items: flex-start; gap: 40px; }

.cz-text h2 {
  font-weight: 700;
  font-size: clamp(32px, 2.5vw, 48px);
  line-height: 1;
  letter-spacing: -1px;
  color: #fff;
}

.cz-yellow { color: var(--yellow); }

.cz-text p { font-size: 18px; line-height: 1.6; max-width: 613px; }
.cz-p1, .cz-p2 { color: #d9e0eb; margin-top: 0; }
.cz-p1 { margin-bottom: -14px; }
.cz-p3 { color: #bac9e0; }

.cz-visual {
  position: relative;
  justify-self: start;
  margin-left: 7px;
  width: 100%;
  max-width: 533px;
}

/* Caminhos amarelos (frame "Modo Isolamento"): 604x701 em x+192.9 y+7.5 da foto (533x708.5) */
.cz-outline {
  position: absolute;
  left: 36.21%;
  top: 1.06%;
  width: 113.36%;
  max-width: none;
  height: auto;
  z-index: 0;
}
.cz-photo { position: relative; z-index: 1; width: 100%; }

.cz-notch { display: none; }

/* ===================================================================
   05 — RESULTADOS
   =================================================================== */
.resultados {
  position: relative;
  background: var(--blue-light);
  padding: 110px 0 120px;
}

/* losango de transição vindo da seção CTA */
.resultados::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  width: 28px;
  height: 28px;
  background: var(--blue);
  border-radius: 4px;
  transform: translateX(-50%) rotate(45deg);
}

.res-title { max-width: 720px; letter-spacing: -1px; font-size: clamp(30px, 2.3vw, 44px) !important; }

.res-sub {
  font-size: 15px;
  line-height: 26px;
  color: var(--gray);
  max-width: 580px;
}

.res-cta { font-size: 14px; line-height: 1.4; color: var(--gray); }
.text-blue { color: var(--blue); }

.res-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 49px;
  flex-wrap: wrap;
}

.res-card {
  width: 413px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(11, 101, 192, .13);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 16px 20px;
}

.rc-ies {
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
}

.rc-time {
  background: #fff5e6;
  color: var(--yellow);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
}

.rc-featured {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
}
.rc-featured img { width: 10px; height: 10px; }

.rc-alunos {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-light);
  padding-bottom: 4px;
}

.rc-pct {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  color: #1b6ce6;
  font-family: var(--font-title);
  font-weight: 800;
  padding-top: 4px;
}
.rc-num { font-size: 64px; line-height: 1; }
.rc-sym { font-size: 28px; line-height: 1.4; }

.rc-label {
  font-size: 13px;
  line-height: 20px;
  color: var(--gray);
  text-align: center;
  padding: 4px 20px 12px;
}

.rc-divider { width: 100%; height: 1px; background: #e2e8f0; }

.rc-receita-label {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--gray-light);
  padding-top: 16px;
}

.rc-receita {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 20px;
  color: var(--blue);
  padding: 2px 0 20px;
}
.rc-receita span { font-weight: 500; font-size: 13px; }

/* featured (escuro) */
.res-card-featured { background: var(--blue-featured); box-shadow: 0 12px 32px rgba(11, 101, 192, .25); }
.res-card-featured .rc-ies { background: rgba(255, 255, 255, .13); color: #fff; }
.res-card-featured .rc-time { background: rgba(255, 255, 255, .13); }
.res-card-featured .rc-alunos { color: #a8c4e8; }
.res-card-featured .rc-pct { color: #fff; }
.res-card-featured .rc-num { font-size: 72px; }
.res-card-featured .rc-sym { font-size: 32px; }
.res-card-featured .rc-label { color: #a8c4e8; }
.res-card-featured .rc-divider { background: rgba(255, 255, 255, .13); }
.res-card-featured .rc-receita-label { color: #a8c4e8; }
.res-card-featured .rc-receita { color: #fff; }

/* ===================================================================
   06 — GRANDES NÚMEROS
   =================================================================== */
.numeros {
  background: linear-gradient(0deg, #fff 0%, var(--blue-light) 80%);
  padding: 100px 0;
}

.numeros .eyebrow { font-size: 14px; }

.num-grid {
  display: flex;
  justify-content: center;
  gap: 180px;
  margin-top: 80px;
  flex-wrap: wrap;
}

.num-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.num-icon {
  width: 200px;
  height: 200px;
  border-radius: 36px;
  background: rgba(11, 101, 192, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.num-icon img { width: 148px; height: 138px; object-fit: contain; }

.num-value {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(48px, 3.75vw, 72px);
  line-height: 1.1;
  color: var(--blue);
  margin-top: 12px;
}

.num-label { font-size: 20px; line-height: 28px; color: var(--navy); }

/* ===================================================================
   07 — FALE CONOSCO
   =================================================================== */
.fale-conosco { background: #fff; padding: 10px 0 90px; }

.fc-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy) url('../assets/fale-conosco-bg.jpg') center / cover no-repeat;
  padding: 93px 0 90px;
}

.fc-content {
  position: relative;
  padding: 0 clamp(28px, 10%, 145px);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fc-content h2 {
  font-weight: 700;
  font-size: clamp(32px, 2.5vw, 48px);
  line-height: 1.1;
  margin-top: 39px;
}

.fc-lead {
  margin-top: 37px;
  font-size: clamp(20px, 1.46vw, 28px);
  line-height: 1.4;
  max-width: 1002px;
}

.fc-sub { margin-top: 18px; font-size: 16px; line-height: 1.4; }

.fc-content .btn { margin-top: 52px; padding: 12px 30px; }

/* ===================================================================
   08 — FAQ
   =================================================================== */
.faq { background: #fff; padding: 40px 0 120px; }

.faq .section-header { gap: 18px; }
.faq .section-header h2 { line-height: 1.4; }

.faq-items {
  max-width: 923px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 30px;
  filter: drop-shadow(0 0 20px rgba(132, 132, 132, .2));
  overflow: hidden;
}

.faq-item.open { filter: drop-shadow(0 0 20px rgba(11, 101, 192, .2)); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--blue);
}

.fq-icon { width: 17px; height: 17px; flex-shrink: 0; transition: transform .3s ease; }
.faq-item.open .fq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  padding: 0 24px 28px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  max-width: 867px;
}

/* ===================================================================
   09 — FOOTER
   =================================================================== */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 40px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.f-col { width: 305px; display: flex; flex-direction: column; gap: 20px; }
.f-col:first-child { gap: 24px; }

.f-logo { width: 180px; height: 35px; object-fit: contain; }

.f-desc { font-size: 13px; line-height: 22px; color: #bac4d1; }

.f-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.f-accent {
  display: inline-block;
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: var(--blue);
}

.f-links { display: flex; flex-direction: column; gap: 10px; }
.f-links li {
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  padding-bottom: 8px;
}
.f-links a { font-size: 14px; transition: color .2s; }
.f-links a:hover { color: var(--yellow); }

.f-social { display: flex; gap: 12px; }
.f-soc {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}
.f-soc:hover { transform: translateY(-2px); }
.f-soc img { width: 18px; height: 18px; }
.f-fb { background: #1877f2; }
.f-li { background: #0a66c2; }
.f-ig { background: #c13584; }

.f-empresa { font-weight: 700; font-size: 13px; }

.f-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: rgba(255, 255, 255, .13);
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 12px;
}

.f-b {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: #bac4d1; }

/* ===================================================================
   RESPONSIVO
   =================================================================== */
@media (max-width: 1500px) {
  .hero-visual { width: 700px; }
  .hero-content { max-width: 960px; }
}

@media (max-width: 1280px) {
  .hero-visual { width: 560px; }
  .hero-content { max-width: 800px; }
  .hero-card { min-height: 800px; }
  .cz-grid { grid-template-columns: 1fr 1fr; }
  .num-grid { gap: 100px; }
}

@media (max-width: 1080px) {
  .hero-card { min-height: 0; }
  .hero-visual {
    position: relative;
    top: 0;
    margin: -20px auto 0;
    width: 100%;
    max-width: 700px;
  }
  .hero-content { padding: 70px 30px 0; }
  .sinais-grid { grid-template-columns: 1fr; }
  .sinais-visual { margin: 0 auto; }
  .cf-grid { grid-template-columns: 1fr; gap: 80px; }
  .cz-grid { grid-template-columns: 1fr; }
  .cz-visual { order: -1; }
  .footer-columns { justify-content: flex-start; }
  .f-col { width: calc(50% - 20px); }
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue-deep);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    display: none;
    z-index: 50;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 30px; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }

  .timeline { gap: 60px; padding-left: 0; }
  .timeline-bar { left: 71px; }
  .tl-step { grid-template-columns: 160px 1fr; }
  .tl-left .tl-icon, .tl-right .tl-icon { grid-column: 1; justify-self: start; margin: 0; }
  .tl-left .tl-text, .tl-right .tl-text { grid-column: 2; text-align: left; padding: 0 0 0 24px; display: block; }
  .tl-right .tl-text { align-items: flex-start; }
  .tl-right .tl-text h3 { text-align: left; }
}

@media (max-width: 640px) {
  .hero-content h1 { font-size: 34px; }
  .cz-text h2 { font-size: 28px; }
  .hero-lead { margin-top: 28px; }
  .hero-content .btn { margin-top: 36px; }
  .hero-card { width: calc(100% - 32px); }
  .sinais { padding: 90px 0 70px; }
  .sv-bubble { box-shadow: 0 4px 40px 0 var(--yellow); }
  .timeline-bar { left: 51px; }
  .tl-step { grid-template-columns: 120px 1fr; }
  .tl-icon { width: 120px; height: 120px; }
  .tl-icon img { width: 54px; height: 54px; }
  .num-grid { gap: 60px; }
  .num-icon { width: 150px; height: 150px; border-radius: 28px; }
  .num-icon img { width: 100px; height: 95px; }
  .fc-card { padding: 60px 0; }
  .f-col { width: 100%; }
  .res-card { width: 100%; max-width: 413px; }
  .faq-question { font-size: 16px; }
}
