/* css/fonts.css */
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lenia Sans";
  src: url("../fonts/LeniaSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lenia Sans";
  src: url("../fonts/LeniaSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lenia Sans";
  src: url("../fonts/LeniaSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lenia Sans";
  src: url("../fonts/LeniaSans-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* css/tokens.css */
:root {
  --color-light: #fafdff;
  --color-bg: #fafdff;
  --color-blue: #1480d2;
  --color-ink: #081926;
  --color-bg-soft: #daf0ff;
  --color-painel: #81bce4;
  --color-painel-texto: #0a253a;
  --color-footer: #2f83c2;
  --color-footer-chip: #114166;
  --color-text-strong: #21272c;
  --color-text: rgba(33, 39, 44, 0.8);
  --color-blue-mid: #4a94cc;
  --color-overlay: rgba(0, 0, 0, 0.58);
  --color-marca-bg: rgba(1, 74, 123, 0.38);
  --color-marca-texto: #f3faff;
  --color-marca-bg-solido: rgba(1, 74, 123, 0.8);

  --font-display: "Grift", system-ui, sans-serif;
  --font-body: "Lenia Sans", system-ui, sans-serif;
  --font-num: "Lenia Sans", system-ui, sans-serif;

  --shadow-card:
    0 32px 9.5px rgba(0, 0, 0, 0.02),
    0 14px 7px rgba(0, 0, 0, 0.03),
    0 4px 4px rgba(0, 0, 0, 0.04);

  --content-width: 1082px;
  --band-width: 1280px;
  --gutter: clamp(24px, 5vw, 96px);
}

/* css/base.css */
*,
*::before,
*::after { box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-light);
  background: #000;
}

img { display: block; max-width: 100%; }

h1, p { margin: 0; }

.btn {
  --btn-gradiente: linear-gradient(
    90deg,
    #063861 0%,
    #0c5792 16.667%,
    #1276c2 33.333%,
    #0c5792 50%,
    #063861 66.667%,
    #0c5792 83.333%,
    #1276c2 100%
  );
  --btn-gradiente-escuro: linear-gradient(
    90deg,
    #052e50 0%,
    #0a4778 16.667%,
    #0f619f 33.333%,
    #0a4778 50%,
    #052e50 66.667%,
    #0a4778 83.333%,
    #0f619f 100%
  );


  --icone-caixa: var(--color-light);
  --icone-seta: var(--color-blue);

  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 4px 12px;
  border: 0;
  border-radius: 8px;
  background: var(--btn-gradiente);

  background-size: 300% 100%;
  color: var(--color-light);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease;
  animation: btn-gradiente 4s linear infinite;
}

@keyframes btn-gradiente {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--btn-gradiente-escuro);
  background-size: 300% 100%;
  animation: btn-gradiente 4s linear infinite;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn:hover::before,
.btn:focus-visible::before { opacity: 1; }

.btn:hover .btn__seta,
.btn:focus-visible .btn__seta {
  animation: btn-seta 620ms both;
}

@keyframes btn-seta {

  0% {
    transform: translateY(0) scaleY(-1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  }
  12% {
    transform: translateY(3px) scaleY(-1);
    animation-timing-function: cubic-bezier(0.6, 0, 0.9, 0.2);
  }

  46% {
    transform: translateY(-34px) scaleY(-1);
    animation-timing-function: step-end;
  }

  47% {
    transform: translateY(34px) scaleY(-1);
    animation-timing-function: cubic-bezier(0.15, 0.7, 0.3, 1);
  }

  86% {
    transform: translateY(-2px) scaleY(-1);
    animation-timing-function: ease-out;
  }
  100% { transform: translateY(0) scaleY(-1); }
}

.btn__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

.btn--light {
  --icone-caixa: var(--color-blue);
  --icone-seta: var(--color-light);
  background: var(--color-light);
  color: var(--color-blue);
  animation: none;
}

.btn--light::before { content: none; }

.btn--light:hover { background: #e2eef8; }

.btn__icon {
  display: block;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--icone-caixa);
  overflow: hidden;
}

.btn__seta {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--icone-seta);
  transform: translateY(0) scaleY(-1);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn::before,
  .btn:hover .btn__seta,
  .btn:focus-visible .btn__seta { animation: none; }
}

.step {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.step__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 24px;
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #f2f2f2;
  font-family: var(--font-num);
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.072em;
  color: #535353;
}

.step__badge-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40.914px;
  height: 40.914px;
}

.step__badge {
  width: 32px;
  height: 32px;
  transform: rotate(19.7deg);
  filter:
    drop-shadow(-6px 5px 5px rgba(0, 0, 0, 0.05))
    drop-shadow(-3px 2px 4px rgba(0, 0, 0, 0.09))
    drop-shadow(-1px 1px 2px rgba(0, 0, 0, 0.1));
}

.step__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px 24px;
}

.step__title {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-blue);
}

.step__desc {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.runner__head { fill: var(--runner-cor, var(--color-blue)); }

.runner__torso,
.runner__limb {
  stroke: var(--runner-cor, var(--color-blue));
  stroke-linecap: round;
  stroke-linejoin: round;
}

.runner__torso { stroke-width: 17; }
.runner__limb { stroke-width: 11.5; }

.runner__sway,
.runner__bob,
.runner__arm,
.runner__forearm,
.runner__leg,
.runner__shin { transform-box: view-box; }

.runner__sway { transform-origin: 42px 62px; }
.runner__arm { transform-origin: 50.5px 35px; }
.runner__forearm { transform-origin: 50.5px 53px; }
.runner__leg { transform-origin: 42px 62px; }
.runner__shin { transform-origin: 42px 81px; }

.runner__sway { animation: runner-sway var(--stride, 0.62s) ease-in-out infinite; }
.runner__arm { animation: runner-shoulder var(--stride, 0.62s) ease-in-out infinite; }
.runner__forearm { animation: runner-elbow var(--stride, 0.62s) ease-in-out infinite; }
.runner__leg { animation: runner-thigh var(--stride, 0.62s) ease-in-out infinite; }
.runner__shin { animation: runner-knee var(--stride, 0.62s) ease-in-out infinite; }

.runner__bob {
  animation: runner-bob calc(var(--stride, 0.62s) / 2) ease-in-out infinite;
  animation-delay: calc(var(--stride, 0.62s) * -0.325);
}

.runner__leg--b,
.runner__shin--b,
.runner__arm--a,
.runner__forearm--a {
  animation-delay: calc(var(--stride, 0.62s) / -2);
}

@keyframes runner-thigh {
  0%   { transform: rotate(-25deg); }
  18%  { transform: rotate(-4deg); }
  35%  { transform: rotate(22deg); }
  46%  { transform: rotate(20deg); }
  58%  { transform: rotate(0deg); }
  72%  { transform: rotate(-22deg); }
  85%  { transform: rotate(-35deg); }
  100% { transform: rotate(-25deg); }
}

@keyframes runner-knee {
  0%   { transform: rotate(20deg); }
  18%  { transform: rotate(40deg); }
  35%  { transform: rotate(15deg); }
  46%  { transform: rotate(95deg); }
  58%  { transform: rotate(125deg); }
  72%  { transform: rotate(100deg); }
  85%  { transform: rotate(50deg); }
  100% { transform: rotate(20deg); }
}

@keyframes runner-shoulder {
  0%   { transform: rotate(-42deg); }
  30%  { transform: rotate(5deg); }
  50%  { transform: rotate(45deg); }
  80%  { transform: rotate(-15deg); }
  100% { transform: rotate(-42deg); }
}

@keyframes runner-elbow {
  0%   { transform: rotate(-100deg); }
  30%  { transform: rotate(-70deg); }
  50%  { transform: rotate(-42deg); }
  80%  { transform: rotate(-90deg); }
  100% { transform: rotate(-100deg); }
}

@keyframes runner-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3.5px); }
}

@keyframes runner-sway {
  0%, 100% { transform: rotate(0.8deg); }
  50%      { transform: rotate(-0.8deg); }
}

@media (prefers-reduced-motion: reduce) {
  .runner__sway,
  .runner__bob,
  .runner__arm,
  .runner__forearm,
  .runner__leg,
  .runner__shin { animation: none; }


  .runner__leg--a { transform: rotate(-25deg); }
  .runner__shin--a { transform: rotate(20deg); }
  .runner__leg--b { transform: rotate(9deg); }
  .runner__shin--b { transform: rotate(110deg); }
  .runner__arm--a { transform: rotate(45deg); }
  .runner__forearm--a { transform: rotate(-42deg); }
  .runner__arm--b { transform: rotate(-42deg); }
  .runner__forearm--b { transform: rotate(-100deg); }
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* css/sections/header.css */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 918px;
  padding: clamp(96px, 10vw, 191px) var(--gutter) 0;
  background: url("../../images/hero-bg.webp") center bottom / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: var(--content-width);
}

.hero__logo {
  width: 123.324px;
  height: 84px;
}

.hero__title {
  position: relative;
  max-width: 900px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  word-break: break-word;
}

.hero__mark { position: relative; }

.hero__stroke {
  position: absolute;
  left: 3.1%;
  top: 1em;
  width: 94.3%;
  max-width: none;
  height: 0.2em;
  animation: stroke-draw 1.939309s linear both;
}

@keyframes stroke-draw {
  0%      { width: 3.1%; }
  2.213%  { width: 10.6%; }
  4.728%  { width: 17.9%; }
  7.847%  { width: 31.1%; }
  11.468% { width: 39.5%; }
  13.682% { width: 54%; }
  16.297% { width: 65.8%; }
  19.516% { width: 81.1%; }
  22.333% { width: 94.3%; }
  100%    { width: 94.3%; }
}

.hero__desc {
  max-width: 624px;
  font-size: 24px;
  line-height: 1.1;
  text-align: center;
  word-break: break-word;
}

.hero__desc b { font-weight: 700; }

.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

@media (max-width: 640px) {

  .hero__desc { font-size: 18px; }
  .btn__label { font-size: 16px; }
  .btn__icon { width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__stroke { animation: none; }
}

/* css/sections/banner.css */
.banner {
  position: relative;
  z-index: 1;
  height: 0;
  padding: 0 var(--gutter);
}

.banner__inner {
  width: 100%;
  max-width: var(--band-width);
  margin: 0 auto;
  aspect-ratio: 1280 / 484;
  min-height: 220px;
  transform: translateY(-50%);
}

.banner__inner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {

  .banner__inner {
    position: absolute;
    top: 0;
    left: var(--gutter);
    right: var(--gutter);

    width: auto;
    aspect-ratio: 339 / 484;

    max-height: 484px;
    min-height: 0;
    max-width: none;
  }
}

/* css/sections/assessoria.css */
.assessoria {
  padding: clamp(200px, 20vw, 384px) var(--gutter) clamp(64px, 6.25vw, 120px);
  background: var(--color-bg);
}

.assessoria__inner {
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: var(--band-width);
  margin: 0 auto;
}

.assessoria__head {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.assessoria__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.9vw, 3.125rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  text-align: center;
}

.assessoria__title .destaque { color: var(--color-blue); }

.road {
  --run-end: 88%;
  position: relative;
  height: 161px;
}

.road__line {
  position: absolute;
  left: 5.078%;
  right: 4.14%;
  bottom: 29px;
  height: 3px;
  background: repeating-linear-gradient(to right, #2f83c2 0 6px, transparent 6px 12px);
}

.road__runner {
  --stride: 0.62s;
  position: absolute;
  left: 6.016%;
  bottom: 33px;
  width: 68px;
  height: 74px;
  overflow: visible;
}

.road__flag {
  position: absolute;
  right: 1.64%;
  bottom: 34px;
  width: 41px;
  height: 41px;
  transform-origin: 12% 100%;
}

.road .runner__sway,
.road .runner__bob,
.road .runner__arm,
.road .runner__forearm,
.road .runner__leg,
.road .runner__shin { animation-play-state: paused; }

.road__flag { animation: flag-wave 1.1s ease-in-out infinite alternate; }

@keyframes flag-wave {
  0%   { transform: skewY(-4deg) scaleX(1); }
  50%  { transform: skewY(2deg) scaleX(0.95); }
  100% { transform: skewY(5deg) scaleX(0.9); }
}

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

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .assessoria__head { gap: 40px; }
}

@media (max-width: 600px) {
  .assessoria { padding-top: 290px; }
}

@media (max-width: 640px) {
  .road { --run-end: 74%; height: 110px; }
  .road__runner { width: 46px; height: 50px; bottom: 22px; left: 4%; }
  .road__flag { width: 28px; height: 28px; bottom: 23px; }
  .road__line { bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .road__flag { animation: none; }
}

/* css/sections/diferenca.css */
.diferenca {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  padding: clamp(64px, 6.25vw, 120px) 0;
  background: var(--color-bg);
  overflow: hidden;
}

.diferenca__inner {
  display: flex;
  align-items: center;
  gap: 52px;
  width: 100%;
  max-width: calc(var(--band-width) + var(--gutter) * 2);
  padding: 0 var(--gutter);
}

.diferenca__col {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.diferenca__col--left { gap: 28px; }
.diferenca__col--right { gap: 36px; }

.diferenca__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.9vw, 3.125rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f2c42;
  text-transform: lowercase;
}

.diferenca__title::first-letter { text-transform: uppercase; }
.diferenca__title .destaque { color: var(--color-blue); }

.diferenca p {
  max-width: 571px;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.diferenca__col--left p { max-width: 560px; }
.diferenca p b { font-weight: 700; }

.galeria {
  --fade: clamp(72px, 19.6%, 376px);
  position: relative;
  align-self: stretch;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%);
}

.galeria__track {
  --gap: 52px;
  display: flex;
  gap: var(--gap);
  width: max-content;
  will-change: transform;
  animation: galeria-scroll 45s linear infinite;
}

.galeria__item {
  flex: 0 0 auto;
  width: 625px;
  height: 265px;
  overflow: hidden;
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galeria__item:nth-child(5n + 1) img { object-position: 50% 9%; }
.galeria__item:nth-child(5n + 2) img { object-position: 50% 33%; }
.galeria__item:nth-child(5n + 3) img { object-position: 50% 24%; }
.galeria__item:nth-child(5n + 4) img { object-position: 57% 17%; }
.galeria__item:nth-child(5n + 5) img { object-position: 50% 29%; }

@keyframes galeria-scroll {
  to { transform: translateX(calc(-50% - var(--gap) / 2)); }
}

@media (max-width: 900px) {
  .diferenca__inner { flex-direction: column; align-items: flex-start; gap: 36px; }
  .galeria__item { width: 420px; height: 178px; }
  .galeria__track { --gap: 24px; }
}

@media (max-width: 560px) {
  .galeria__item { width: 320px; height: 136px; }
  .galeria__track { --gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .galeria__track { animation: none; }
}

/* css/sections/comofunciona.css */
.comofunciona {
  padding: clamp(64px, 6.25vw, 120px) var(--gutter);
  background: var(--color-bg);
}

.comofunciona__inner {
  display: flex;
  align-items: flex-start;
  gap: 52px;
  max-width: var(--band-width);
  margin: 0 auto;
}

.comofunciona__title {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.9vw, 3.125rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.comofunciona__title .destaque { color: var(--color-blue); }

.comofunciona__steps {
  display: flex;
  flex: 0 0 614px;
  flex-direction: column;
  gap: 24px;
  max-width: 100%;
}

.comofunciona .step { gap: 0; }

.comofunciona .step__text {
  width: calc(100% - 98px);
  margin: 0 auto;
  padding: 0 0 24px;
}

@media (max-width: 900px) {
  .comofunciona__inner { flex-direction: column; gap: 36px; }
  .comofunciona__steps { flex-basis: auto; width: 100%; }
  .comofunciona .step__text { width: calc(100% - 48px); }


  .comofunciona__title {
    width: 100%;
    text-align: center;
  }
}

/* css/sections/corridas.css */
.corridas {
  padding: 0 var(--gutter);
  background: var(--color-bg);
}

.corridas__lista {
  display: flex;
  gap: 52px;
  max-width: 1024px;
  height: 519px;
  margin: 0 auto;
}

.corrida {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--color-painel);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 14px 14px rgba(0, 0, 0, 0.03),
    0 32px 19px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  transition: flex-grow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.corrida.is-active { flex-grow: 3.5; }

@media (hover: hover) {
  .corridas__lista:hover .corrida { flex-grow: 1; }
  .corridas__lista .corrida:hover { flex-grow: 3.5; }
}

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

.corrida:nth-child(2) .corrida__foto { object-position: 50% 22%; }

.corrida__veu {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 37, 58, 0.85), rgba(10, 37, 58, 0.45));
  transition: background 0.5s ease;
}

.corrida.is-active .corrida__veu,
.corrida:hover .corrida__veu {
  background: linear-gradient(to top, rgba(10, 37, 58, 0.7), rgba(10, 37, 58, 0.05) 65%);
}

.corrida__nome {
  position: absolute;
  left: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 2.7vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-painel-texto);
  white-space: nowrap;
}

.corrida__nome--vertical {
  top: 50%;
  writing-mode: vertical-rl;
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 1;
  transition: opacity 0.22s ease 0.3s;
}

.corrida__nome--horizontal {
  bottom: 40px;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.corrida.is-active .corrida__nome--vertical,
.corrida:hover .corrida__nome--vertical {
  opacity: 0;
  transition: opacity 0.18s ease;
}

.corrida.is-active .corrida__nome--horizontal,
.corrida:hover .corrida__nome--horizontal {
  opacity: 1;
  transition: opacity 0.22s ease 0.3s;
}

.corrida:has(.corrida__foto) .corrida__nome {
  color: var(--color-light);
  text-shadow: 0 2px 12px rgba(10, 37, 58, 0.5);
}

@media (max-width: 900px) {
  .corridas__lista { gap: 20px; height: 420px; }
  .corrida { padding: 40px 0; }
}

@media (max-width: 600px) {
  .corridas__lista {
    flex-direction: column;
    gap: 16px;
    height: auto;
  }


  .corrida {
    flex: none;
    padding: 0;
    height: 84px;
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .corrida.is-active { height: 280px; }


  .corrida.is-active,
  .corridas__lista .corrida:hover { flex-grow: 0; }


  .corrida__nome--vertical { opacity: 0; }

  .corrida__nome--horizontal {
    opacity: 1;
    bottom: 24px;
  }


  .corrida .corrida__veu {
    background: linear-gradient(to top, rgba(10, 37, 58, 0.85), rgba(10, 37, 58, 0.45));
  }

  .corrida.is-active .corrida__veu {
    background: linear-gradient(to top, rgba(10, 37, 58, 0.7), rgba(10, 37, 58, 0.05) 65%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .corrida,
  .corrida__veu,
  .corrida__nome { transition: none; }
}

/* css/sections/depoimentos.css */
.depoimentos {
  padding: clamp(64px, 6.25vw, 120px) var(--gutter);
  background: var(--color-bg);
}

.depoimentos__inner {
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: var(--band-width);
  margin: 0 auto;
}

.depoimentos__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.9vw, 3.125rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  text-align: center;
}

.depo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.depo__stage {
  display: grid;
  width: 100%;
}

.depo__slide {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0s 0.45s;
}

.depo__slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease;
}

.depo__photo {
  flex: 0 0 39.73%;
  margin-right: -4.84%;
  aspect-ratio: 509 / 482;
  box-shadow:
    0 32px 19px rgba(0, 0, 0, 0.02),
    0 14px 14px rgba(0, 0, 0, 0.03),
    0 4px 8px rgba(0, 0, 0, 0.04);
}

.depo__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.depo__col {
  display: flex;
  flex: 0 0 65.11%;
  align-items: center;
}

.depo .step { width: 84.53%; }

.depo__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.depo__arrow,
.depo__dot {
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-blue-mid);
  cursor: pointer;
}

.depo__arrow {
  display: flex;
  width: 40px;
  height: 40px;
  transition: opacity 0.2s ease;
}

.depo__arrow:hover { opacity: 0.7; }
.depo__arrow--next { transform: rotate(180deg); }

.depo__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.depo__dot.is-active { opacity: 1; }

.depo--single .depo__nav { display: none; }

@media (max-width: 900px) {
  .depo__slide { flex-direction: column; align-items: stretch; }

  .depo__stage { max-width: 480px; }
  .depo__photo { flex: 0 0 auto; margin: 0; }
  .depo__col { flex: 0 0 auto; }
  .depo .step { width: calc(100% - 32px); margin: -40px auto 0; }
}

@media (prefers-reduced-motion: reduce) {
  .depo__slide { transition: none; }
}

/* css/sections/ricardo.css */
.ricardo {
  padding: clamp(64px, 6.25vw, 120px) var(--gutter) 0;
  background: var(--color-bg);
}

.ricardo__inner {
  position: relative;
  container-type: inline-size;
  max-width: var(--band-width);
  margin: 0 auto;
}

.ricardo__nome {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 900;
  font-style: italic;
  font-size: 15.516cqw;
  line-height: 1.04;
  letter-spacing: 0.16em;
  color: var(--color-blue);
}

.ricardo__nome > span { display: block; }

.ricardo__foto {
  position: relative;
  z-index: 1;
  width: 55.391%;
  aspect-ratio: 709 / 721;
  margin: -28.359% 0 0 auto;
}

.ricardo__foto img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(-12.969cqw 3.906cqw 5.391cqw rgba(0, 0, 0, 0.02))
    drop-shadow(-7.266cqw 2.188cqw 4.609cqw rgba(0, 0, 0, 0.06))
    drop-shadow(-3.281cqw 0.938cqw 3.359cqw rgba(0, 0, 0, 0.1))
    drop-shadow(-0.781cqw 0.234cqw 1.875cqw rgba(0, 0, 0, 0.12));
}

.ricardo__marcas { display: contents; }

.marca {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 1.669cqw;
  padding: 1.875cqw;
  background: var(--color-marca-bg);
  color: var(--color-marca-texto);

  -webkit-backdrop-filter: blur(clamp(8px, 1.094cqw, 16px)) brightness(0.72) saturate(1.2);
  backdrop-filter: blur(clamp(8px, 1.094cqw, 16px)) brightness(0.72) saturate(1.2);
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.marca__linha {
  display: flex;
  align-items: center;
  gap: 1.641cqw;
  margin: 0;
}

.marca__dist {
  font-weight: 700;
  font-size: 3.338cqw;
}

.marca__tempo,
.marca__pace {
  margin: 0;
  font-weight: 300;
  font-size: 2.781cqw;
}

.marca--meia { top: 45.625cqw; left: 26.016cqw; }
.marca--maratona { top: 29.141cqw; left: 73.828cqw; z-index: 2; }

@media (max-width: 700px) {



  .ricardo__foto {
    z-index: 0;
    width: 82%;
    margin: 0 auto;
  }

  .marca {
    gap: 8px;
    padding: 14px;
  }


  .marca--maratona {
    top: 46cqw;
    left: auto;
    right: 0;
  }

  .marca--meia {
    top: 96cqw;
    left: 0;
  }

  .marca__linha { gap: 10px; }
  .marca__dist { font-size: clamp(1.25rem, 6vw, 1.75rem); }
  .marca__tempo,
  .marca__pace { font-size: clamp(1rem, 5vw, 1.4rem); }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .marca { background: var(--color-marca-bg-solido); }
}

.ricardo__char { display: inline-block; }

.ricardo.is-animado .ricardo__char {
  opacity: 0;
  transform: translateY(0.16em);
  transition:
    opacity 180ms linear,
    transform 260ms cubic-bezier(0.22, 0.7, 0.25, 1);
}

.ricardo.is-animado .ricardo__char.is-visivel {
  opacity: 1;
  transform: none;
}

.ricardo.is-animado .ricardo__foto {
  opacity: var(--foto, 0);
  transform: translateY(calc((1 - var(--foto, 0)) * 12cqw));
}

.ricardo.is-animado .marca {
  opacity: 0;
  transform: translateY(1.6cqw) scale(0.94);
  transition:
    opacity 320ms ease-out,
    transform 420ms cubic-bezier(0.22, 0.7, 0.25, 1);
}

.ricardo.is-animado .marca.is-visivel {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .ricardo.is-animado .ricardo__char,
  .ricardo.is-animado .ricardo__foto,
  .ricardo.is-animado .marca {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* css/sections/planos.css */
.planos {
  padding: clamp(64px, 6.25vw, 120px) var(--gutter);
  background: var(--color-bg);

  box-shadow:
    0 -13px 28px rgba(17, 53, 75, 0.05),
    0 -51px 51px rgba(17, 53, 75, 0.04),
    0 -115px 69px rgba(17, 53, 75, 0.03),
    0 -205px 82px rgba(17, 53, 75, 0.01);
}

.planos__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: var(--band-width);
  margin: 0 auto;
}

.planos__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.9vw, 3.125rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  text-align: center;
}

.planos__title .destaque { color: var(--color-blue); }

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

.plano {
  display: flex;
  flex-direction: column;
}

.plano__tab {
  margin-bottom: -8px;
  padding: 5px 5px 10px;
  border-radius: 8px 8px 0 0;
  background: var(--color-blue);
  box-shadow: inset 0 -9px 20px rgba(0, 0, 0, 0.25);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: -0.072em;
  color: var(--color-light);
  text-align: center;
}

.plano__card {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-height: 363px;
  border: 1px solid var(--color-blue);
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 14px 14px rgba(0, 0, 0, 0.03),
    0 32px 19px rgba(0, 0, 0, 0.02);
}

.plano__top {
  display: flex;
  justify-content: flex-end;
  height: 24px;
}

.plano__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px 24px;
}

.plano__body .btn {
  align-self: center;
  max-width: 100%;
}

.plano__body .btn__label {
  white-space: normal;
  text-align: center;
}

.plano__preco {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-blue);
  text-align: center;
}

.plano__preco span { font-size: 20px; }

.plano__itens {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plano__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.plano__check {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--color-blue);
}

.plano__item--fora .plano__check { color: #ea1519; }

.plano--destaque .plano__card {
  background: #4ab9ff;
}

.plano--destaque .plano__preco,
.plano--destaque .plano__item {
  color: var(--color-light);
}

.plano--destaque .plano__check { color: #082c47; }

@media (max-width: 1024px) {
  .planos__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .planos__grid { grid-template-columns: 1fr; }
  .planos__inner { gap: 40px; }
}

/* css/sections/diferenciais.css */
.diferenciais {
  padding: clamp(64px, 6.25vw, 120px) var(--gutter);
  background: var(--color-bg);
}

.diferenciais__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  max-width: var(--band-width);
  margin: 0 auto;
}

.diferenciais__title {
  max-width: 641px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.875rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.diferenciais__title .destaque { color: var(--color-blue); }

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

@media (max-width: 1024px) {
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais__inner { gap: 40px; }
}

@media (max-width: 600px) {
  .diferenciais__grid { grid-template-columns: 1fr; }
}

/* css/sections/keeprun.css */
.keeprun {
  padding: clamp(64px, 6.25vw, 120px) var(--gutter);
  background: var(--color-bg-soft);
}

.keeprun__inner {
  display: flex;
  align-items: center;
  gap: 52px;
  max-width: var(--band-width);
  margin: 0 auto;
}

.keeprun__foto {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 614 / 298;
  border-radius: 8px;
  overflow: hidden;
}

.keeprun__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.keeprun__conteudo {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  min-width: 0;
}

.keeprun__texto {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.keeprun__title {
  max-width: 488px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.875rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-blue);
}

.keeprun__title .destaque { color: var(--color-ink); }

.keeprun__paragrafos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.keeprun__lead {
  font-weight: 700;
  color: var(--color-text-strong);
}

.keeprun__paragrafos b { font-weight: 700; }

@media (max-width: 900px) {
  .keeprun__inner { flex-direction: column; align-items: stretch; gap: 36px; }
  .keeprun__foto { flex: 0 0 auto; }


  .keeprun__conteudo { display: contents; }

  .keeprun__texto { order: 1; }
  .keeprun__foto { order: 2; }
  .keeprun__conteudo .btn { order: 3; }


  .keeprun__conteudo .btn {
    align-self: center;
    width: fit-content;
  }
}

/* css/sections/faq.css */
.faq {
  padding: clamp(64px, 6.25vw, 120px) var(--gutter);
  background: var(--color-bg);
}

.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  max-width: var(--band-width);
  margin: 0 auto;
}

.faq__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 572px;
  color: var(--color-ink);
}

.faq__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.875rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.faq__subtitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.faq__lista {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq__item {
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.faq__titulo { margin: 0; }

.faq__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq__pergunta {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-blue);
}

.faq__chevron {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: var(--color-blue);
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}

.faq__item.is-open .faq__chevron { transform: rotate(90deg); }

.faq__painel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item.is-open .faq__painel { grid-template-rows: 1fr; }

.faq__painel > div { overflow: hidden; }

.faq__resposta {
  padding-top: 24px;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

@media (max-width: 600px) {
  .faq__inner { gap: 40px; }
  .faq__item { padding: 20px; }
  .faq__pergunta { font-size: 18px; }
  .faq__resposta { padding-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq__painel,
  .faq__chevron { transition: none; }
}

/* css/sections/chamada.css */
.chamada {
  position: relative;
  padding: clamp(64px, 6.25vw, 120px) var(--gutter);
  background: var(--color-bg-soft);
  overflow: hidden;
}

.chamada__traco {
  position: absolute;
  pointer-events: none;
}

.chamada__traco--esq {
  top: -25px;
  left: -13.18%;
  width: 37.45%;
}

.chamada__traco--dir {
  right: -9.22%;
  bottom: -185px;
  width: 41.875%;
}

.chamada__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 888px;
  margin: 0 auto;
}

.chamada__title {
  max-width: 584px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.875rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  text-align: center;
}

.chamada__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 418px;
}

.chamada__desc {
  max-width: 304px;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-align: center;
}

/* css/sections/rodape.css */
.rodape {
  padding: clamp(56px, 6.25vw, 120px) var(--gutter);
  background: var(--color-footer);
  color: var(--color-light);
}

.rodape__inner {
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: var(--band-width);
  margin: 0 auto;
}

.rodape__topo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.rodape__logo-link {
  display: block;
  width: fit-content;
  transition: opacity 0.2s ease;
}

.rodape__logo-link:hover { opacity: 0.75; }

.rodape__logo {
  width: 151px;
  height: 102px;
  object-fit: contain;
}

.rodape__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rodape__titulo {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.rodape__lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
  font-size: 16px;
}

.rodape__linha {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rodape__icone {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  object-fit: contain;
  object-position: left center;
}

.rodape__link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.rodape__link:hover { opacity: 0.75; }

.rodape__base {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.rodape__copy {
  font-weight: 700;
  font-size: 16px;
}

.rodape__sociais {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rodape__social {
  display: flex;
  padding: 4px;
  border-radius: 4px;
  background: var(--color-footer-chip);
  transition: opacity 0.2s ease;
}

.rodape__social:hover { opacity: 0.8; }

@media (max-width: 900px) {
  .rodape__topo { gap: 32px; }
  .rodape__inner { gap: 40px; }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .rodape__topo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }


  .rodape__linha { min-width: 0; }
  .rodape__link { overflow-wrap: anywhere; }
}

@media (max-width: 600px) {
  .rodape { padding: 100px 20px; }

  .rodape__inner { gap: 52px; }

  .rodape__topo {
    flex-direction: column;
    align-items: center;
  }

  .rodape__col,
  .rodape__lista { align-items: center; }

  .rodape__titulo,
  .rodape__copy { text-align: center; }

  .rodape__base {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }


  .rodape__copy { max-width: 272px; }
}

/* css/sections/carregamento.css */
.carregando { display: none; }

.js-carregando .carregando {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--color-bg);
}

.js-carregando .carregando.is-saindo {
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform 480ms cubic-bezier(0.65, 0, 0.35, 1);
}

.carregando__corredor {
  --runner-cor: var(--color-blue-mid);
  --stride: 0.62s;
  width: 85px;
  height: 92px;
  overflow: visible;
}

.carregando__medidor {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 210px;
}

.carregando__trilho {
  height: 6px;
  border-radius: 100px;
  background: #efefef;
  overflow: hidden;
}

.carregando__barra {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--color-blue-mid);
}

.carregando__pct {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--color-ink);
}

@media (prefers-reduced-motion: reduce) {
  .js-carregando .carregando.is-saindo {
    transform: none;
    opacity: 0;
    transition: opacity 320ms ease-out;
  }
}

/* css/revelar.css */
.revelar .revelar__palavra {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
}

.revelar.is-revelado .revelar__palavra {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i) * 55ms);
}

.revelar-bloco {
  opacity: 0;
  transform: translateY(28px);
}

.revelar-bloco.is-revelado {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}

@media (prefers-reduced-motion: reduce) {
  .revelar .revelar__palavra,
  .revelar-bloco {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* css/sections/legal.css */
.legal-topo {
  padding: 32px var(--gutter);
  background: var(--color-footer);
}

.legal-topo__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--band-width);
  margin: 0 auto;
}

.legal-topo__logo {
  width: 100px;
  height: 68px;
  object-fit: contain;
}

.legal {
  padding: clamp(48px, 5vw, 88px) var(--gutter);
  background: var(--color-bg);
}

.legal__inner {
  max-width: 760px;
  margin: 0 auto;
  color: var(--color-text);
}

.legal__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.875rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.legal__data {
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--color-text);
}

.legal h2 {
  margin: 40px 0 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-blue);
}

.legal p,
.legal li {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.legal p { margin-bottom: 12px; }

.legal ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.legal li { margin-bottom: 8px; }

.legal a {
  color: var(--color-blue);
  text-decoration: underline;
}

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

.legal__pendente {
  margin: 32px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--color-blue);
  background: var(--color-bg-soft);
  font-size: 15px;
}

/* css/sections/formulario.css */
.form-secao {
  padding: clamp(48px, 5vw, 88px) var(--gutter);
  background: var(--color-bg);
}

.form-secao__inner {
  max-width: 640px;
  margin: 0 auto;
}

.form-secao__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.875rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.form-secao__title .destaque { color: var(--color-blue); }

.form-secao__lead {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text);
}

.formulario {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.campo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.campo__rotulo {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--color-text-strong);
}

.campo__opcional {
  font-weight: 400;
  color: var(--color-text);
}

.campo__entrada {
  padding: 12px 14px;
  border: 1px solid #cfdae3;
  border-radius: 6px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-strong);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.campo__entrada:focus {
  border-color: var(--color-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 128, 210, 0.18);
}

.campo__entrada:user-invalid {
  border-color: #ea1519;
}

.campo__entrada:user-invalid + .campo__erro { display: block; }

.campo__erro {
  display: none;
  font-size: 13px;
  color: #ea1519;
}

textarea.campo__entrada {
  min-height: 96px;
  resize: vertical;
}

.campo--consentimento {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.campo--consentimento input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-blue);
}

.campo--consentimento label {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text);
}

.campo--consentimento a {
  color: var(--color-blue);
  text-decoration: underline;
}

.formulario__enviar {
  align-self: flex-start;
  border: 0;
  font-family: var(--font-body);
  cursor: pointer;
}

.formulario__nota {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text);
}

@media (max-width: 600px) {
  .formulario { padding: 24px 20px; }
}
