/* TacticJudge — folha de estilos principal */

:root {
  --ink: #1f1c1b;
  --espresso: #2d2724;
  --paper: #ffffff;
  --cream: #ebe9e1;
  --linen: #f5f4f0;
  --stone: #a69b92;
  --cobble: #c7c1b7;
  --hairline: #d9d6ce;
  --accent: #ff7714;
  --accent-ink: #a8450a;
  --muted: #665d56;
  --muted-dark: #b9b2ab;

  --font-display: Didot, "Bodoni 72", "Playfair Display", "Times New Roman", Georgia, serif;
  --font-ui: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --sp-4: 4px;
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-72: 72px;

  --wrap: 1200px;
  --section-gap: 64px;
  --radius: 0px;
  --radius-sm: 2px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  font-weight: 400;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

p {
  margin: 0 0 var(--sp-16);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(255, 119, 20, 0.38);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: var(--sp-12) var(--sp-16);
}

.skip-link:focus {
  left: var(--sp-8);
  top: var(--sp-8);
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--sp-20);
}

.section {
  padding-block: var(--section-gap);
}

.section--linen {
  background: var(--linen);
}

.section--ink {
  background: var(--ink);
  color: var(--cream);
}

.section__head {
  margin-bottom: var(--sp-32);
}

.section__kicker {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-16);
}

.section--ink .section__kicker {
  color: var(--muted-dark);
}

.section__kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex: none;
}

.section__title {
  font-size: 32px;
  max-width: 22ch;
}

.section__lead {
  margin-top: var(--sp-16);
  max-width: 62ch;
  color: var(--muted);
}

.section--ink .section__lead {
  color: var(--muted-dark);
}

/* ---------- botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--espresso);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--onink {
  background: var(--paper);
  color: var(--ink);
}

.btn--onink:hover {
  background: var(--cream);
}

.btn--outline-onink {
  background: transparent;
  color: var(--cream);
  border-color: rgba(235, 233, 225, 0.55);
}

.btn--outline-onink:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn__ico {
  width: 15px;
  height: 15px;
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.link-mark {
  color: var(--accent-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}

.link-mark:hover {
  border-bottom-width: 2px;
}

/* ---------- 1. cabeçalho ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
}

.topbar {
  display: none;
  background: var(--espresso);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  padding-block: 7px;
}

.topbar__flag {
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
}

.topbar__text {
  color: rgba(235, 233, 225, 0.82);
}

.topbar__link {
  margin-left: auto;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.topbar__link:hover {
  text-decoration: underline;
}

.navbar {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(235, 233, 225, 0.12);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  min-height: 60px;
}

.logo {
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  white-space: nowrap;
  line-height: 1;
}

.logo__accent {
  color: var(--accent);
}

.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  display: block;
  padding: 9px 11px;
  font-size: 13.5px;
  color: rgba(235, 233, 225, 0.88);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.nav__link:hover {
  color: var(--accent);
}

.navbar__cta {
  display: none;
  border: 1px solid rgba(235, 233, 225, 0.6);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13.5px;
  color: var(--paper);
  text-decoration: none;
  white-space: nowrap;
}

.navbar__cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.burger {
  margin-left: auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(235, 233, 225, 0.35);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.burger__ico {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.burger__ico--close {
  display: none;
}

.burger[aria-expanded="true"] .burger__ico--open {
  display: none;
}

.burger[aria-expanded="true"] .burger__ico--close {
  display: block;
}

@media (max-width: 1023px) {
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--ink);
    border-bottom: 1px solid rgba(235, 233, 225, 0.14);
    display: none;
  }

  .nav.is-open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-8) var(--sp-20) var(--sp-20);
  }

  .nav__link {
    padding: 13px 0;
    border-bottom: 1px solid rgba(235, 233, 225, 0.12);
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .topbar {
    display: block;
  }
}

@media (min-width: 1024px) {
  .burger {
    display: none;
  }

  .navbar__cta {
    display: inline-block;
  }

  .navbar__inner {
    min-height: 64px;
  }
}

/* ---------- 2. hero ---------- */

.hero {
  --hero-accent: #ff9a4d;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}

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

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 28, 27, 0.88) 0%, rgba(31, 28, 27, 0.72) 38%, rgba(31, 28, 27, 0.82) 74%, rgba(31, 28, 27, 0.97) 100%),
    linear-gradient(90deg, rgba(31, 28, 27, 0.52) 0%, rgba(31, 28, 27, 0.14) 50%, rgba(31, 28, 27, 0.52) 100%);
}

.hero__body {
  position: relative;
  padding-block: var(--sp-64) var(--sp-64);
}

.hero__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d8d4cb;
  margin-bottom: var(--sp-20);
}

.hero__kicker::before,
.hero__kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--hero-accent);
  flex: none;
}

.hero__title {
  font-size: 40px;
  line-height: 1.06;
  max-width: 15ch;
  margin-inline: auto;
}

.hero__mark {
  color: var(--hero-accent);
}

.hero__text {
  margin-top: var(--sp-24);
  margin-inline: auto;
  max-width: 52ch;
  font-size: 17px;
  color: #dcd8cf;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-12);
  margin-top: var(--sp-32);
}

.hero__facts {
  display: grid;
  gap: var(--sp-20);
  margin: var(--sp-40) auto 0;
  max-width: 300px;
  border-top: 1px solid rgba(235, 233, 225, 0.24);
  padding-top: var(--sp-24);
}

.hero__fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.hero__factnum {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--cream);
}

.hero__factlabel {
  font-size: 13px;
  line-height: 1.45;
  color: #d8d4cb;
  max-width: 30ch;
}

@media (min-width: 768px) {
  .hero {
    min-height: 620px;
  }

  .hero__title {
    font-size: 62px;
  }

  .hero__facts {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-24);
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 700px;
  }

  .hero__body {
    padding-block: 96px;
  }

  .hero__title {
    font-size: 76px;
  }
}

@media (min-width: 1280px) {
  .hero {
    min-height: 760px;
  }

  .hero__title {
    font-size: 86px;
  }

  .hero__facts {
    max-width: 840px;
  }
}

/* ---------- estrelas ---------- */

.stars {
  position: relative;
  display: inline-block;
  width: 86px;
  height: 16px;
  flex: none;
}

.stars__row {
  position: absolute;
  inset: 0;
  width: 86px;
  height: 16px;
}

.stars__row--base {
  fill: var(--cobble);
}

.stars__row--on {
  fill: var(--accent);
  clip-path: inset(0 calc(100% - var(--fill, 0%)) 0 0);
}

/* ---------- 3. prova destacada ---------- */

.feature + .feature {
  margin-top: var(--sp-48);
  padding-top: var(--sp-48);
  border-top: 1px solid rgba(235, 233, 225, 0.16);
}

.feature__grid {
  display: grid;
  gap: var(--sp-24);
}

.feature__shot {
  position: relative;
  border: 1px solid rgba(235, 233, 225, 0.18);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.feature__num {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-right: 1px solid rgba(235, 233, 225, 0.18);
  border-bottom: 1px solid rgba(235, 233, 225, 0.18);
}

.feature__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-8);
}

.feature__thumbs img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(235, 233, 225, 0.18);
}

.feature__discipline {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 119, 20, 0.55);
  border-radius: var(--radius-sm);
  padding: 4px 9px;
  margin-bottom: var(--sp-16);
}

.feature__title {
  font-size: 30px;
}

.feature__dev {
  margin-top: var(--sp-8);
  font-size: 13px;
  color: var(--muted-dark);
}

.feature__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-16);
  margin-top: var(--sp-16);
  padding-bottom: var(--sp-20);
  border-bottom: 1px solid rgba(235, 233, 225, 0.16);
}

.feature__chip {
  font-size: 12px;
  color: var(--muted-dark);
  border: 1px solid rgba(235, 233, 225, 0.24);
  border-radius: var(--radius-sm);
  padding: 3px 9px;
}

.feature__text {
  margin-top: var(--sp-20);
  color: rgba(235, 233, 225, 0.86);
}

.facts {
  margin: var(--sp-20) 0 var(--sp-24);
  border-top: 1px solid rgba(235, 233, 225, 0.16);
}

.facts__item {
  display: flex;
  gap: var(--sp-12);
  padding: 11px 0;
  border-bottom: 1px solid rgba(235, 233, 225, 0.16);
  font-size: 14.5px;
  color: rgba(235, 233, 225, 0.9);
}

.facts__ico {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 4px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.7;
}

@media (min-width: 1024px) {
  .feature__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--sp-40);
    align-items: start;
  }

  .feature--flip .feature__media {
    order: 2;
  }

  .feature__title {
    font-size: 38px;
  }
}

/* ---------- 4. catálogo ---------- */

.catalog__layout {
  display: grid;
  gap: var(--sp-16);
}

.promo {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  height: 100%;
}

.promo__media {
  position: relative;
  flex: 1 1 0;
  min-height: 300px;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

.promo__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
}

.promo__tag {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--ink);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 11px;
}

.promo__body {
  padding: var(--sp-24);
}

.promo__head {
  display: flex;
  gap: var(--sp-12);
  align-items: flex-start;
}

.promo__icon {
  width: 52px;
  height: 52px;
  flex: none;
  border: 1px solid var(--hairline);
}

.promo__title {
  font-size: 24px;
}

.promo__dev {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}

.promo__text {
  margin-top: var(--sp-16);
  font-size: 15px;
  color: var(--muted);
}

.promo__specs {
  border-top: 1px solid var(--hairline);
  margin-bottom: var(--sp-20);
}

.promo__spec {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-12);
  padding: 9px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
}

.promo__spec dt {
  color: var(--muted);
}

.promo__spec dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
}

.quad {
  display: grid;
  gap: var(--sp-16);
  grid-template-columns: 1fr;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

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

.card__dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.card__body {
  padding: var(--sp-20);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.card__title {
  font-size: 21px;
}

.card__dev {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}

.card__text {
  margin-top: var(--sp-12);
  font-size: 14.5px;
  color: var(--muted);
  flex: 1 1 auto;
}

.card__foot {
  margin-top: var(--sp-16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-12);
  border-top: 1px solid var(--hairline);
  padding-top: var(--sp-16);
}

.card__disc {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.rows {
  margin-top: var(--sp-16);
  border-top: 1px solid var(--hairline);
}

.rows__head {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: var(--sp-16) 0 var(--sp-8);
}

.row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: var(--sp-16);
  align-items: center;
  padding: var(--sp-16) 0;
  border-bottom: 1px solid var(--hairline);
}

.row__thumb {
  width: 48px;
  height: 48px;
  border: 1px solid var(--hairline);
}

.row__title {
  font-family: var(--font-display);
  font-size: 18px;
}

.row__meta {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

.row__text {
  display: none;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 6px;
}

.row__side {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
}

.row__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  white-space: nowrap;
}

.row__link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

@media (min-width: 640px) {
  .quad {
    grid-template-columns: repeat(2, 1fr);
  }

  .row__text {
    display: block;
  }
}

@media (min-width: 1024px) {
  .catalog__layout {
    grid-template-columns: 360px 1fr;
    align-items: stretch;
  }

  .promo__title {
    font-size: 27px;
  }
}

/* ---------- 5. como começar ---------- */

.steps {
  display: grid;
  gap: var(--sp-24);
}

.steps__list {
  display: grid;
  gap: var(--sp-16);
}

.step {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: var(--sp-20) var(--sp-24);
  display: flex;
  gap: var(--sp-16);
  align-items: flex-start;
}

.step__num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent-ink);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__title {
  font-size: 20px;
}

.step__text {
  margin: 6px 0 0;
  font-size: 14.5px;
  color: var(--muted);
}

.steps__aside {
  border: 1px solid var(--hairline);
  background: var(--paper);
}

.steps__figure {
  margin: 0;
}

.steps__figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--hairline);
}

.steps__caption {
  padding: var(--sp-16) var(--sp-20);
  font-size: 13px;
  color: var(--muted);
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: 1.35fr 1fr;
    gap: var(--sp-40);
    align-items: start;
  }
}

/* ---------- 6. números + modelo editorial ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.stats__cell {
  background: var(--paper);
  padding: var(--sp-24) var(--sp-20);
}

.stats__num {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stats__label {
  margin-top: var(--sp-12);
  font-size: 13px;
  color: var(--muted);
}

.model {
  margin-top: var(--sp-40);
  display: grid;
  gap: var(--sp-24);
}

.model__figure {
  margin: 0;
  border: 1px solid var(--hairline);
}

.model__figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.model__title {
  font-size: 26px;
}

.model__text {
  margin-top: var(--sp-16);
  color: var(--muted);
}

.pillars {
  margin-top: var(--sp-24);
  display: grid;
  gap: var(--sp-16);
}

.pillar {
  display: flex;
  gap: var(--sp-12);
  align-items: flex-start;
}

.pillar__ico {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 2px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.pillar__title {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pillar__text {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats__num {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .model {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--sp-40);
    align-items: center;
  }
}

/* ---------- 7. faq ---------- */

.faq {
  max-width: 900px;
  border-top: 1px solid var(--hairline);
}

.faq__item {
  border-bottom: 1px solid var(--hairline);
}

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  background: transparent;
  border: 0;
  padding: var(--sp-20) 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -0.005em;
}

.faq__btn:hover {
  color: var(--accent-ink);
}

.faq__sign {
  position: relative;
  width: 18px;
  height: 18px;
  flex: none;
}

.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform 0.2s ease;
}

.faq__sign::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
}

.faq__sign::after {
  left: 8px;
  top: 0;
  width: 2px;
  height: 18px;
}

.faq__item--open .faq__sign::after {
  transform: scaleY(0);
}

.faq__panel {
  display: none;
  padding-bottom: var(--sp-20);
  max-width: 74ch;
  color: var(--muted);
  font-size: 15px;
}

.faq__item--open .faq__panel {
  display: block;
}

@media (min-width: 768px) {
  .faq__btn {
    font-size: 22px;
  }
}

/* ---------- 8. opiniões ---------- */

.reviews {
  display: grid;
  gap: var(--sp-16);
}

.review {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: var(--sp-24);
  display: flex;
  flex-direction: column;
}

.review__quote {
  margin: var(--sp-16) 0 var(--sp-24);
  font-size: 15.5px;
  flex: 1 1 auto;
}

.review__author {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  border-top: 1px solid var(--hairline);
  padding-top: var(--sp-16);
}

.review__badge {
  width: 40px;
  height: 40px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-ink);
}

.review__name {
  font-weight: 600;
  font-size: 14.5px;
}

.review__role {
  font-size: 12.5px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- 9. cta + formulário ---------- */

.cta {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

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

.cta__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(31, 28, 27, 0.96) 30%, rgba(31, 28, 27, 0.7) 100%);
}

.cta__inner {
  position: relative;
  display: grid;
  gap: var(--sp-32);
  padding-block: var(--section-gap);
}

.cta .section__kicker {
  color: var(--muted-dark);
}

.cta__title {
  font-size: 32px;
  max-width: 18ch;
}

.cta__text {
  margin-top: var(--sp-16);
  color: rgba(235, 233, 225, 0.82);
  max-width: 48ch;
}

.cta__note {
  font-size: 12.5px;
  color: rgba(235, 233, 225, 0.62);
  margin: 0;
}

.form {
  background: rgba(45, 39, 36, 0.9);
  border: 1px solid rgba(235, 233, 225, 0.2);
  padding: var(--sp-24);
}

.form__grid {
  display: grid;
  gap: var(--sp-16);
}

.field__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235, 233, 225, 0.72);
  margin-bottom: 6px;
}

.field__input {
  width: 100%;
  background: rgba(31, 28, 27, 0.75);
  border: 1px solid rgba(235, 233, 225, 0.28);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font: inherit;
  font-size: 15px;
  padding: 11px 12px;
}

.field__input::placeholder {
  color: rgba(235, 233, 225, 0.4);
}

.field__input:focus {
  border-color: var(--accent);
}

.consent {
  display: flex;
  gap: var(--sp-12);
  align-items: flex-start;
  font-size: 13px;
  color: rgba(235, 233, 225, 0.82);
}

.consent input {
  width: 18px;
  height: 18px;
  flex: none;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.consent a {
  color: var(--accent);
}

.form__msg {
  display: none;
  margin-top: var(--sp-16);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: var(--sp-12) var(--sp-16);
  font-size: 14px;
  color: var(--cream);
  background: rgba(255, 119, 20, 0.12);
}

.form__msg.is-visible {
  display: block;
}

@media (min-width: 640px) {
  .form__grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cta__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-64);
    align-items: center;
  }

  .cta__title {
    font-size: 42px;
  }
}

/* ---------- 10. rodapé ---------- */

.footer {
  background: var(--ink);
  color: rgba(235, 233, 225, 0.8);
  padding-block: var(--sp-48) var(--sp-24);
  font-size: 14px;
}

.footer__top {
  display: grid;
  gap: var(--sp-32);
  padding-bottom: var(--sp-32);
  border-bottom: 1px solid rgba(235, 233, 225, 0.16);
}

.footer__about {
  max-width: 40ch;
  color: rgba(235, 233, 225, 0.68);
  margin-top: var(--sp-16);
  font-size: 14px;
}

.footer__title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(235, 233, 225, 0.55);
  margin-bottom: var(--sp-16);
}

.footer__list li {
  margin-bottom: 9px;
}

.footer__list a {
  color: rgba(235, 233, 225, 0.86);
  text-decoration: none;
}

.footer__list a:hover {
  color: var(--accent);
}

.footer__mail a {
  color: var(--accent);
  text-decoration: none;
}

.footer__mail a:hover {
  text-decoration: underline;
}

.footer__bottom {
  padding-top: var(--sp-24);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(235, 233, 225, 0.55);
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: var(--sp-40);
  }
}

/* ---------- páginas legais ---------- */

.page {
  padding-block: var(--sp-48) var(--section-gap);
}

.page__head {
  border-bottom: 1px solid var(--hairline);
  padding-bottom: var(--sp-24);
  margin-bottom: var(--sp-32);
}

.page__title {
  font-size: 34px;
}

.page__date {
  margin: var(--sp-12) 0 0;
  font-size: 13px;
  color: var(--muted);
}

.prose {
  max-width: 78ch;
}

.prose h2 {
  font-size: 24px;
  margin-top: var(--sp-40);
  margin-bottom: var(--sp-12);
}

.prose h3 {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: var(--sp-24);
  margin-bottom: var(--sp-8);
}

.prose p,
.prose li {
  color: #423b36;
}

.prose ul {
  list-style: none;
  margin: 0 0 var(--sp-16);
}

.prose ul li {
  position: relative;
  padding-left: var(--sp-20);
  margin-bottom: var(--sp-8);
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 1px;
  background: var(--accent);
}

.prose a {
  color: var(--accent-ink);
}

.page__back {
  margin-top: var(--sp-40);
}

@media (min-width: 768px) {
  .page__title {
    font-size: 46px;
  }
}

/* ---------- utilitários flutuantes ---------- */

.totop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid rgba(235, 233, 225, 0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.totop.is-visible {
  display: inline-flex;
}

.totop svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--espresso);
  color: var(--cream);
  border-top: 1px solid rgba(235, 233, 225, 0.22);
  display: none;
}

.cookie.is-visible {
  display: block;
}

.cookie__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-16);
  padding-block: var(--sp-16);
}

.cookie__text {
  margin: 0;
  font-size: 13.5px;
  color: rgba(235, 233, 225, 0.86);
  flex: 1 1 320px;
}

.cookie__text a {
  color: var(--accent);
}

.cookie__actions {
  display: flex;
  gap: var(--sp-8);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
