/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* ===== DESIGN TOKENS ===== */
:root {
  --red: #fe2c55;
  --cyan: #25f4ee;
  --cyan-2: #00fff8;
  --green: #36e23d;
  --gray: #c4c4c4;
  --dark: #1d1d1d;
  --maxw: 1920px;
}

/* ===== SHARED ELEMENTS ===== */
.eyebrow {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 18px;
  text-align: center;
  text-transform: uppercase;
}
.heading {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -1.38px;
  text-align: center;
  text-transform: uppercase;
}
.heading.c-cyan { color: var(--cyan-2); }
.heading.c-red { color: var(--red); }
.heading .light { font-weight: 300; }
.heading .c-red { color: var(--red); }
.heading .c-cyan { color: var(--cyan-2); }
.body-text p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 16px;
  text-align: justify;
}
.body-text strong { font-weight: 500; }

/* ===== BUTTONS ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 60px;
  border-radius: 60px;
  box-shadow: 0 0 40px rgba(19, 121, 254, 0.3);
  transition: transform .2s, box-shadow .2s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(254, 44, 85, 0.5); }
.btn-cta img { width: 31px; height: 31px; }

.btn-green {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  text-decoration: none;
  padding: 20px 40px;
  border: none;
  border-radius: 7px;
  box-shadow: 0 0 6.5px 6px rgba(119, 255, 0, 0.25);
  cursor: pointer;
  transition: transform .2s;
}
.btn-green:hover { transform: translateY(-2px); }
.btn-center { display: block; width: 542px; margin: 40px auto 0; }

/* ===== TICKERS (Seções 1 & 2) ===== */
.ticker {
  overflow: hidden;
  background: var(--dark);
  box-shadow: 11px 4px 12px 8px rgba(0,0,0,.25);
  transform: rotate(3.82deg);
  width: 110%;
  margin-left: -5%;
  padding: 22px 0;
}
.ticker-reverse { transform: rotate(-2.2deg); }
.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-size: 32px;
  font-weight: 600;
  will-change: transform;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  padding-right: 24px;
}
.ticker-track .t-red { color: var(--red); }
.ticker-track .t-cyan { color: var(--cyan); }
.ticker-bottom {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 4;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SEÇÃO 1 — HERO ===== */
.s1 {
  position: relative;
  width: 100%;
  height: 900px;
  background: #000;
  overflow: hidden;
}
.s1-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
}
.s1-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 446px;
  background: linear-gradient(to bottom, rgba(13,18,24,0) 0%, rgba(0,255,248,0.15) 100%);
  z-index: 2;
}
.s1-header {
  position: absolute;
  top: 135px;
  left: 103px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 5;
}
.s1-logo { width: 205px; height: auto; }
.s1-divider { width: 1px; height: 24px; background: #fff; }
.s1-tagline {
  font-size: 14.8px;
  color: #fff;
  letter-spacing: 5.476px;
  white-space: nowrap;
}
.s1-content {
  position: absolute;
  top: 276px;
  left: 114px;
  width: 785px;
  z-index: 5;
}
.s1-title {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -3px;
  color: var(--cyan);
  margin-bottom: 30px;
}
.s1-sub {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 54px;
  max-width: 762px;
}
.s1-sub strong { font-weight: 600; }

/* ===== SEÇÃO 2 — TICKER SOZINHO ===== */
.s2 {
  position: relative;
  height: 165px;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.s2 .ticker { background: rgba(29,29,29,0.8); }

/* ===== SEÇÃO 3 — ATENÇÃO + FORM ===== */
.s3 {
  position: relative;
  min-height: 926px;
  padding: 100px 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  background: #000;
  overflow: hidden;
}
.glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  mix-blend-mode: plus-lighter;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.glow-left { left: -200px; top: 50%; transform: translateY(-50%); background: radial-gradient(circle, rgba(254,44,85,.6), transparent 70%); }
.glow-right { right: -200px; top: 50%; transform: translateY(-50%); background: radial-gradient(circle, rgba(0,255,248,.5), transparent 70%); }

.s3-text {
  position: relative;
  width: 547px;
  text-align: center;
  z-index: 2;
}
.s3-text .eyebrow { margin-bottom: 27px; }
.s3-text .heading .light { font-weight: 300; letter-spacing: -1.38px; }
.c-cyan { color: var(--cyan-2); }
.c-red { color: var(--red); }

.form-card {
  position: relative;
  width: 542px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 15px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}
/* ===== NATIVE FORM — heading ===== */
.form-card .form-eyebrow,
.m-form-card .form-eyebrow {
  font-size: 11px;
  letter-spacing: 10px;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255,255,255,.45);
  margin-bottom: 2px;
}
.form-card .form-title,
.m-form-card .form-title {
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.5px;
  margin-bottom: 4px;
}

/* ===== NATIVE FORM — select ===== */
.form-card select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: rgba(255,255,255,.04) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.45)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: none;
  border-radius: 5px;
  padding: 10px 36px 10px 12px;
  font-size: 16px;
  color: rgba(255,255,255,.45);
  font-family: inherit;
  outline: none;
  cursor: pointer;
  transition: background-color .2s var(--ease-out), box-shadow .25s var(--ease-out);
}
.form-card select.filled,
.form-card select:focus { color: #fff; }
.form-card select:focus {
  background-color: rgba(37,244,238,.1);
  box-shadow: 0 0 24px rgba(37,244,238,.3), inset 0 0 0 1px rgba(37,244,238,.4);
}
.form-card select option { background: #1a1a1a; color: #fff; }

/* ===== NATIVE FORM — success state ===== */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 48px 20px;
  min-height: 300px;
}
.form-success.show { display: flex; }
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37,244,238,.1);
  border: 2px solid var(--cyan-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: var(--cyan-2);
  animation: successPop .45s var(--ease-out);
}
@keyframes successPop {
  from { transform: scale(.4); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.form-success h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--cyan-2);
  text-transform: uppercase;
  letter-spacing: -.5px;
}
.form-success p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
  max-width: 320px;
}

/* ===== NATIVE FORM — error states ===== */
.form-error {
  font-size: 13px;
  color: var(--red);
  text-align: center;
}
.form-card input.field-error {
  box-shadow: 0 0 20px rgba(254,44,85,.5), inset 0 0 0 1px rgba(254,44,85,.6);
}
.form-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -1px;
}
.form-card input {
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 16px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: background .2s;
}
.form-card input:focus { background: rgba(255,255,255,0.08); }
.form-card .btn-green {
  margin-top: 10px;
  font-size: 24px;
  padding: 20px;
}
.form-card small {
  font-size: 14px;
  text-align: center;
  opacity: .8;
  margin-top: 8px;
}

/* ===== SEÇÃO 4 — SOBRE NÓS ===== */
.s4 {
  position: relative;
  min-height: 934px;
  background: #000;
  padding: 80px 0;
  overflow: hidden;
}
.s4-team-wrap {
  position: absolute;
  left: -158px;
  top: -191px;
  width: 1031px;
  height: 1125px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.s4-team {
  position: absolute;
  left: 0;
  top: -130px;
  width: 100%;
  height: 1375px;
  object-fit: cover;
  object-position: center;
}
.s4-content {
  position: relative;
  margin-left: auto;
  margin-right: 120px;
  max-width: 733px;
  z-index: 2;
}
.s4-content .eyebrow { margin-bottom: 27px; }
.s4-content .heading { margin-bottom: 40px; }
.s4-text p {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 16px;
  text-align: justify;
}
.s4-text strong { font-weight: 600; text-transform: uppercase; }

@media (max-width: 1600px) and (min-width: 1201px) {
  .s4-team-wrap {
    width: 790px;
  }
  .s4-content {
    max-width: 650px;
    margin-right: 80px;
  }
}

/* ===== SEÇÃO 6 — RESULTADOS ===== */
.s6 {
  position: relative;
  min-height: 1193px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 100px 120px;
  text-align: center;
}
.s6-head { margin-bottom: 60px; }
.s6-head .eyebrow { margin-bottom: 27px; }
.stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}
.stat {
  width: 270px;
  height: 214px;
  padding: 30px;
  background: rgba(32,33,35,0.3);
  border-bottom: 3px solid var(--red);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  text-align: left;
}
.stat img { width: 40px; height: 40px; margin-bottom: 20px; }
.stat h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 4px;
}
.stat p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

.prints {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.prints img {
  width: min(100%, 490px);
  height: auto;
  max-width: 490px;
  border-radius: 19px;
  object-fit: contain;
}

/* ===== SEÇÃO 7 — MÉTODO ===== */
.s7 {
  position: relative;
  min-height: 1012px;
  background: #000;
  padding: 100px 120px;
  text-align: center;
  overflow: hidden;
}
.s7::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
}
.s7-head { position: relative; margin-bottom: 60px; }
.s7-head .eyebrow { margin-bottom: 27px; }
.s7-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 450px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.s7-logo {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 100%;
  max-width: 450px;
  height: auto;
}
.s7-item { text-align: left; max-width: 360px; }
.s7-i2,
.s7-i4,
.s7-i6 { margin-left: auto; }
.s7-item h4 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.s7-item p {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.42;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #fff;
}
.s7-i1 { grid-column: 1; grid-row: 1; }
.s7-i2 { grid-column: 3; grid-row: 1; text-align: right; }
.s7-i3 { grid-column: 1; grid-row: 2; }
.s7-i4 { grid-column: 3; grid-row: 2; text-align: right; }
.s7-i5 { grid-column: 1; grid-row: 3; }
.s7-i6 { grid-column: 3; grid-row: 3; text-align: right; }

/* ===== SEÇÃO 9 — PLANOS ===== */
.s9 {
  position: relative;
  min-height: 948px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 100px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.s9-text { max-width: 720px; }
.s9-text .eyebrow { margin-bottom: 27px; text-align: left; }
.s9-text .heading { text-align: left; margin-bottom: 40px; }
.s9-text .heading .light { display: inline; font-weight: 300; }
.s9-text .body-text p { text-align: justify; }
.s9-graph {
  width: 100%;
  max-width: 653px;
  border: 1.5px solid var(--red);
  border-radius: 34px;
  opacity: .7;
  justify-self: end;
}

/* ===== SEÇÃO 10 — CASE ===== */
.s10 {
  position: relative;
  min-height: 1275px;
  background: #000;
  padding: 100px 120px;
  text-align: center;
}
.s10-head { margin-bottom: 60px; }
.s10-head .eyebrow { margin-bottom: 27px; }
.case-card {
  max-width: 1140px;
  margin: 0 auto;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--red);
  border-radius: 30px;
  padding: 60px;
  backdrop-filter: blur(10px);
}
.case-card h3 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 21.6px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
}
.case-intro, .case-result {
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.case-result { margin-bottom: 40px; }
.case-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: left;
}
.case-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.case-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.case-col li { display: flex; gap: 10px; align-items: flex-start; }
.case-col li img { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.case-col li span {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--gray);
}

/* ===== SEÇÃO 11 — FOUNDERS ===== */
.s11 {
  position: relative;
  height: 900px;
  background: #000;
  overflow: hidden;
  border-top: 2px solid rgba(37,244,238,.35);
}
.s11::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3,8,12,.96) 0%, rgba(3,8,12,.9) 36%, rgba(3,8,12,.55) 58%, rgba(3,8,12,.05) 100%),
    linear-gradient(180deg, rgba(3,8,12,.1), rgba(3,8,12,.55));
}
.s11::after {
  content: '';
  position: absolute;
  top: 0;
  left: 44%;
  width: 42%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: rgba(255,255,255,.045);
  clip-path: polygon(0 22%, 100% 0, 82% 100%, 24% 100%);
}
.s11-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
  z-index: 1;
}
.s11-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 96px 0 0 116px;
}
.s11-content .eyebrow {
  position: relative;
  display: inline-block;
  text-align: left;
  margin-bottom: 34px;
  letter-spacing: 18px;
}
.s11-content .eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 102px;
  height: 1px;
  background: rgba(37,244,238,.65);
}
.s11-content .heading {
  width: max-content;
  max-width: calc(100vw - 232px);
  white-space: nowrap;
  text-align: left;
  margin-bottom: 42px;
  color: #8fcbe8;
  font-size: clamp(42px, 3vw, 58px);
  line-height: 1.1;
  letter-spacing: -1.2px;
}
.s11-content .body-text p {
  font-size: 25px;
  line-height: 1.58;
  text-align: left;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
}
.s11-content .body-text strong {
  color: #fff;
}
.founder-name {
  position: absolute;
  z-index: 4;
  width: 165px;
  min-height: 64px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  font-weight: 300;
  letter-spacing: 4px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(254,44,85,.22), rgba(3,8,12,.82) 42%, rgba(37,244,238,.18)),
    rgba(8,10,16,.82);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  box-shadow:
    -18px 0 44px rgba(254,44,85,.18),
    18px 0 44px rgba(37,244,238,.16),
    0 18px 55px rgba(0,0,0,.45),
    inset 0 0 42px rgba(255,255,255,.045);
  backdrop-filter: blur(12px);
  translate: -50% 0;
}
.founder-name::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(110deg, rgba(254,44,85,.78), rgba(255,255,255,.16) 46%, rgba(37,244,238,.78));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.founder-name strong {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 2px;
}
.founder-name br { display: none; }
.f-guilherme { top: 395px; right: 840px; left: auto; translate: 50% 0; }
.f-eduardo   { top: 660px; right: 440px; left: auto; translate: 50% 0; }

/* ===== SEÇÃO 12 — DEPOIMENTOS ===== */
.s12 {
  position: relative;
  min-height: 801px;
  background: #000;
  padding: 100px 120px;
  text-align: center;
}
.s12-head { margin-bottom: 60px; }
.s12-head .eyebrow { margin-bottom: 27px; }

/* ===== SEÇÃO 13 — DIFERENCIAIS ===== */
.s13 {
  position: relative;
  min-height: 1095px;
  background: #000;
  padding: 100px 120px;
  text-align: center;
  overflow: hidden;
}
.s13::before, .s13::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: plus-lighter;
}
.s13::before { background: rgba(0,255,248,.3); left: -300px; bottom: 100px; }
.s13::after { background: rgba(254,44,85,.3); right: -300px; bottom: 100px; }

.s13-head { position: relative; margin-bottom: 60px; }
.s13-head .eyebrow { margin-bottom: 27px; }
.dif-list {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.dif {
  background: rgba(32,33,35,0.3);
  border-bottom: 3px solid var(--cyan-2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  padding: 30px;
  display: flex;
  gap: 20px;
  text-align: left;
}
.dif img { width: 40px; height: 40px; flex-shrink: 0; }
.dif h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.dif p {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
}

/* ===== SEÇÃO 14 — FAQ ===== */
.s14 {
  position: relative;
  min-height: 898px;
  background: #000;
  padding: 100px 120px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.s14-left { text-align: left; }
.s14-logo { width: 142px; margin-bottom: 40px; }
.s14-left .eyebrow { text-align: left; margin-bottom: 20px; }
.s14-left .heading { text-align: left; font-size: 60px; line-height: 1.03; margin-bottom: 60px; }
.s14-left .btn-cta { font-size: 18px; padding: 18px 40px; }
.s14-right { display: flex; flex-direction: column; gap: 22px; }
.s14-right details {
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 24px 32px;
}
.s14-right summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.5px;
  cursor: pointer;
  list-style: none;
}
.s14-right summary::-webkit-details-marker { display: none; }
.s14-right summary img { width: 16px; height: 10px; transition: transform .2s; }
.s14-right details[open] summary img { transform: rotate(180deg); }
.s14-right details p {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.25px;
}

/* ===== RESPONSIVE — Scale to viewport for <1920 ===== */
@media (max-width: 1919px) {
  body { font-size: calc(100vw / 1920 * 16); }
}
@media (max-width: 1200px) {
  .s1-content, .s4-content, .s11-content { padding: 60px 40px; }
  .s1-content { width: 90%; }
  .s1-title { font-size: 38px; }
  .heading { font-size: 38px; }
  .s3, .s6, .s7, .s9, .s10, .s12, .s13, .s14 { padding: 80px 40px; }
  .s9 { grid-template-columns: 1fr; }
  .s9-graph { justify-self: center; }
  .s14 { grid-template-columns: 1fr; }
  .s14-left .heading { font-size: 44px; }
  .case-cols { grid-template-columns: 1fr; }
  .stats { flex-direction: column; align-items: center; }
  .prints { flex-direction: column; }
  .s7-wrap { grid-template-columns: 1fr; }
  .s7-logo { grid-column: 1; grid-row: auto; margin: 30px auto; }
  .s7-item, .s7-i2, .s7-i4, .s7-i6 { grid-column: 1 !important; text-align: center !important; }
}
@media (max-width: 1200px) and (min-width: 769px) {
  .s4 {
    min-height: auto;
    padding: 0 0 80px;
  }
  .s4-team-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 520px;
    transform: none !important;
  }
  .s4-team {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .s4-content {
    margin: 48px auto 0;
    max-width: 900px;
    padding: 0 56px;
  }
}
@media (max-width: 768px) {
  .s1 { height: auto; min-height: 700px; }
  .s1-header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    top: 30px;
    left: 20px;
    right: 20px;
  }
  .s1-logo { width: 172px; }
  .s1-divider { display: none; }
  .s1-tagline { display: none; }
  .s1-content {
    top: 180px;
    left: 24px;
    right: 24px;
    width: auto;
    padding: 0;
  }
  .s1-title { font-size: 28px; }
  .s1-sub { font-size: 16px; }
  .btn-cta { font-size: 16px; padding: 14px 24px; width: 100%; }
  .btn-cta img { width: 24px; height: 24px; }
  .heading { font-size: 28px; }
  .eyebrow { font-size: 14px; letter-spacing: 8px; }
  .s3 { flex-direction: column; padding: 60px 20px; }
  .s3-text, .form-card { width: 100%; }
  .s4-team { position: relative; width: 100%; left: 0; top: 0; }
  .s4-content { margin: 40px 20px 0; }
  .case-card { padding: 30px 20px; }
  .case-card h3 { font-size: 28px; letter-spacing: 8px; }
  .s11-content { padding: 60px 20px 0; }
  .founder-name { display: none; }
}

/* ===== MOBILE — melhorias e correções ===== */

/* Touch tap delay removal */
.btn-cta, .btn-green, summary, .form-card input {
  touch-action: manipulation;
}

/* Previne scroll horizontal: resolve reveal-right translateX(48px) + glow */
html, body { overflow-x: hidden; }

@media (max-width: 768px) {
  /* CRÍTICO: body herdava ~3px em 375px via calc(100vw/1920*16) */
  body { font-size: 16px; }

  /* Hero — svh para barras dinâmicas do browser */
  .s1 { min-height: 100svh; }

  /* btn-center overflow fix */
  .btn-center { width: 100%; max-width: 100%; }

  /* Paddings de seção uniformes */
  .s4, .s6, .s7, .s9, .s10, .s12, .s13, .s14 { padding: 60px 20px; }

  /* Seção 4 — team wrap: colapsa o posicionamento absoluto */
  .s4 { min-height: auto; padding: 0 0 60px; }
  .s4-team-wrap {
    position: relative;
    left: auto; top: auto;
    width: 100%; height: 240px;
    overflow: hidden;
  }
  .s4-team {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .s4-content {
    position: relative;
    margin: 32px 20px 0;
    margin-right: 20px;
    max-width: 100%;
    padding: 0;
  }

  /* Textos corpo */
  .body-text p  { font-size: 17px; }
  .s4-text p    { font-size: 16px; }
  .case-intro, .case-result { font-size: 16px; }
  .body-text p,
  .s4-text p,
  .s9-text .body-text p,
  .s11-content .body-text p {
    text-align: left;
    word-spacing: normal;
  }

  /* Ticker */
  .ticker-track { font-size: 18px; }

  /* Stat cards — remove dimensões fixas */
  .stat { width: 100%; max-width: 340px; height: auto; padding: 24px; }

  /* Prints — max-width 490px fixo causava overflow */
  .prints img { max-width: 100%; }

  /* Case col — herança de 3px do body scaling */
  .case-col li      { font-size: 14px; }
  .case-col li span { font-size: 14px; }

  /* FAQ — overflow + touch target dos summaries */
  .s14 { overflow: hidden; }
  .s14-right summary { min-height: 48px; display: flex; align-items: center; }

  /* Método */
  .s7-item h4 { font-size: 22px; }
  .s7-item p  { font-size: 15px; }

  /* Founders — padding bottom */
  .s11-content { padding: 60px 20px 80px; }

  /* Formulário — touch targets mínimos (44px) */
  .form-card input  { min-height: 44px; padding: 12px; }
  .form-card .btn-green { min-height: 52px; }
  .form-card label  { font-size: 16px; }

  /* FAQ */
  .s14-right summary { font-size: 15px; }
  .s14-right details { padding: 20px; }
  .s14-left .heading { font-size: 32px; }

}

/* ===== FIGMA MOBILE — layout e animações ===== */
@media (max-width: 768px) {

  /* ---------- HERO ---------- */
  .s1-bg        { object-position: center center; }
  .s1-content   { text-align: center; }
  .s1-sub       { text-align: center; margin-left: auto; margin-right: auto; }
  /* Overlay mais escuro no topo para leitura do texto */
  .s1-overlay   {
    inset: 0;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,.65) 0%,
      rgba(0,0,0,.35) 50%,
      rgba(0,255,248,.12) 100%
    );
  }
  /* CTA centralizado */
  .s1-content .btn-cta { margin: 0 auto; }

  /* ---------- PRINTS CARROSSEL (S6 + S12) ---------- */
  .s6 .prints,
  .s12 .prints {
    flex-direction: row !important;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 14px;
    /* Sangra até as bordas da seção */
    margin-left:  -20px;
    margin-right: -20px;
    padding: 4px 20px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .s6 .prints::-webkit-scrollbar,
  .s12 .prints::-webkit-scrollbar { display: none; }
  .s6 .prints img,
  .s12 .prints img {
    flex-shrink: 0;
    width: 78vw;
    max-width: 300px;
    height: auto;
    scroll-snap-align: start;
    border-radius: 14px;
  }

  /* ---------- MÉTODO — timeline vertical ---------- */
  .s7 { padding: 60px 20px 80px; }
  .s7-logo {
    width: 180px;
    margin: 0 auto 48px;
    display: block;
    grid-column: unset !important;
    grid-row: unset !important;
  }
  .s7-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 0;
    max-width: 100%;
  }
  /* Todos os items empilhados centralizados */
  .s7-item,
  .s7-i1, .s7-i2, .s7-i3,
  .s7-i4, .s7-i5, .s7-i6 {
    grid-column: unset !important;
    grid-row: unset !important;
    text-align: center !important;
    width: 100%;
    padding: 20px 0 0;
  }
  .s7-item h4 {
    font-size: 20px;
    color: var(--cyan-2);
    margin-bottom: 6px;
  }
  .s7-item p { font-size: 14px; color: rgba(255,255,255,.8); }
  /* Linha vertical entre itens */
  .s7-item:not(:last-of-type)::after {
    content: '';
    display: block;
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.22);
    margin: 18px auto 0;
  }

  /* ---------- FAQ — layout sem painel esquerdo ---------- */
  .s14 {
    display: flex !important;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
  }
  .s14-logo { display: none; }
  .s14-left {
    padding: 0;
  }
  .s14-left .heading {
    font-size: 28px;
    text-align: left;
    margin-bottom: 0;
  }
  .s14-left .eyebrow { text-align: left; margin-bottom: 16px; }
  /* CTA move para depois do accordion via JS; esconde aqui */
  .s14-left .btn-cta { display: none; }
  /* CTA clone que o JS injeta após o accordion */
  .s14-faq-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  /* ---------- DIFERENCIAIS — cards com gap ---------- */
  .dif-list { gap: 20px; }
  .dif { border-radius: 12px; }

}

/* 480px — phones pequenos */
@media (max-width: 480px) {
  .s1-content { top: 170px; }
  .s1-title   { font-size: 24px; letter-spacing: -1px; margin-bottom: 22px; }
  .s1-sub     { font-size: 15px; margin-bottom: 30px; }
  .btn-cta    { font-size: 13px; padding: 14px 18px; }
  .heading    { font-size: 22px; }
  .eyebrow    { font-size: 12px; letter-spacing: 6px; }
  .ticker-track { font-size: 15px; }
  .case-card h3 { font-size: 22px; letter-spacing: 4px; }
}

/* ===== ANIMAÇÕES ===== */
:root {
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --dur: 700ms;
}

/* ===== GRAIN / NOISE TEXTURE ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
}

/* Reveal system */
.reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-flip {
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal-up    { transform: translate3d(0, 48px, 0); }
.reveal-left  { transform: translate3d(-48px, 0, 0); }
.reveal-right { transform: translate3d(48px, 0, 0); }
.reveal-scale { transform: scale(0.88); }
.reveal-flip  { transform: perspective(1200px) rotateX(-70deg); transform-origin: center bottom; }

.reveal.in, .reveal-up.in, .reveal-left.in, .reveal-right.in, .reveal-scale.in, .reveal-flip.in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotateX(0);
}

/* Hero title word+letter split */
.s1-title .w {
  display: inline-block;
  white-space: nowrap;
}
.s1-title .l {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 8px, 0);
  transition: opacity .55s var(--ease-out), filter .55s var(--ease-out), transform .55s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 12ms);
  will-change: opacity, transform, filter;
}
.s1-title.in .l {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

/* CTA pulsing glow + magnetic transition */
.btn-cta {
  animation: ctaGlow 2.6s ease-in-out infinite;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  will-change: transform;
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(254, 44, 85, .35), 0 0 0 0 rgba(37, 244, 238, 0); }
  50%      { box-shadow: 0 0 60px rgba(254, 44, 85, .55), 0 0 80px 0 rgba(37, 244, 238, .25); }
}
.btn-cta:hover {
  animation-play-state: paused;
  box-shadow: 0 0 80px rgba(254, 44, 85, .7), 0 0 120px rgba(37, 244, 238, .35);
}

/* Form focus elevation */
.form-card label {
  transition: transform .25s var(--ease-out);
  border-radius: 6px;
}
.form-card label:focus-within {
  transform: translateY(-2px);
}
.form-card input {
  transition: background .2s var(--ease-out), box-shadow .25s var(--ease-out);
}
.form-card label:focus-within input {
  background: rgba(37, 244, 238, .1);
  box-shadow: 0 0 24px rgba(37, 244, 238, .3), inset 0 0 0 1px rgba(37, 244, 238, .4);
}
.form-card.reveal-up { transform: perspective(1200px) rotateY(-12deg) translate3d(0, 48px, 0); }
.form-card.reveal-up.in { transform: perspective(1200px) rotateY(0) translate3d(0, 0, 0); }

/* Tilt elements */
.tilt {
  transition: transform .25s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}

/* Stat cards flip */
.stat.reveal-flip { transform: perspective(1200px) rotateX(-80deg); }
.stat.reveal-flip.in { transform: perspective(1200px) rotateX(0); }

/* Parallax helper */
[data-parallax] { will-change: transform; }

/* FAQ grid-row smooth expand */
.s14-right details { transition: border-color .3s var(--ease-out); }
.s14-right details[open] { border-color: var(--cyan-2); box-shadow: 0 0 40px rgba(0, 255, 248, .12); }
.s14-right summary img { transition: transform .35s var(--ease-out); }
.s14-right details[open] summary img { transform: rotate(180deg); }

.s14-right .faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease-out);
}
.s14-right .faq-body > .faq-inner { overflow: hidden; min-height: 0; }
.s14-right details[open] .faq-body { grid-template-rows: 1fr; }

/* Diferenciais glow orgânico */
.s13::before { animation: glowDrift1 14s ease-in-out infinite; }
.s13::after  { animation: glowDrift2 16s ease-in-out infinite; }
@keyframes glowDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(80px, -30px) scale(1.1); }
}
@keyframes glowDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-80px, 30px) scale(1.08); }
}

/* Section 3 glows parallax-ready */
.glow-left  { animation: glowPulseA 6s ease-in-out infinite; }
.glow-right { animation: glowPulseB 7s ease-in-out infinite; }
@keyframes glowPulseA {
  0%, 100% { opacity: .75; }
  50%      { opacity: 1; }
}
@keyframes glowPulseB {
  0%, 100% { opacity: .7; }
  50%      { opacity: 1; }
}

/* Stats numbers — lock width during count */
.stat h3 { font-variant-numeric: tabular-nums; }

@media (max-width: 768px) {
  .ticker {
    width: 100%;
    margin-left: 0;
    transform: none;
    contain: paint;
  }
  .ticker-reverse { transform: none; }
  .ticker-bottom { bottom: 32px; }

  body .reveal-left,
  body .reveal-right {
    transform: translate3d(0, 32px, 0);
  }
  body .form-card.reveal-up {
    transform: translate3d(0, 32px, 0);
  }
  body .form-card.reveal-up.in {
    transform: translate3d(0, 0, 0);
  }
}


/* ===== GSAP-MANAGED INITIAL STATE ===== */
[data-gsap] { opacity: 0; }

/* ===== BUTTON MICROINTERACTIONS ===== */
.btn-cta  { position: relative; overflow: hidden; }
.btn-green {
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.btn-green:active {
  transform: scale(0.97) !important;
  box-shadow: 0 0 4px 2px rgba(54,226,61,.2) !important;
  transition-duration: .08s !important;
}

/* Ripple */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  transform: scale(0);
  animation: rippleAnim .6s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(6); opacity: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  body::after { animation: none !important; }
  .reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-flip,
  .s1-title .l, .form-card.reveal-up, [data-gsap] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .btn-cta { animation: none !important; }
}
.no-anim .scroll-progress { display: none; }
