:root {
  --ink: #0a0b09;
  --ink-soft: #171915;
  --charcoal: #272a24;
  --lime: #d5ef0a;
  --lime-deep: #b7d000;
  --paper: #f6f7f2;
  --white: #ffffff;
  --muted: #64685f;
  --line: #d9ddd2;
  --error: #b42318;
  --success: #207a3d;
  --shadow: 0 22px 60px rgba(10, 11, 9, 0.16);
  --radius: 18px;
  --radius-small: 10px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(213, 239, 10, 0.28);
  background: rgba(10, 11, 9, 0.96);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.brand__name {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.035em;
}

.brand__edition {
  border: 1px solid var(--lime);
  border-radius: 5px;
  padding: 2px 8px;
  color: var(--lime);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 13px 22px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(213, 239, 10, 0.2);
}

.button--lime:hover {
  background: #e2fa25;
  box-shadow: 0 14px 34px rgba(213, 239, 10, 0.28);
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.button--large {
  min-height: 58px;
  padding: 17px 28px;
}

.button--full {
  width: 100%;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

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

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #090a08 0%, rgba(9, 10, 8, 0.98) 37%, rgba(9, 10, 8, 0.62) 57%, rgba(9, 10, 8, 0.08) 100%);
  content: "";
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 15% 22%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 76% 62%, rgba(213, 239, 10, 0.09) 0 1px, transparent 1.5px);
  background-size: 14px 14px, 21px 21px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 4;
  width: min(630px, 57%);
  padding-block: 82px 88px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #566200;
}

.hero h1,
.section-heading h2,
.result-card h2,
.about__copy h2,
.final-cta h2,
.thankyou h1,
.privacy-hero h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  letter-spacing: 0.012em;
  line-height: 0.99;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.75rem);
}

.hero h1 span {
  display: block;
  color: var(--lime);
}

.hero__lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: #e3e5dd;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.55;
}

.event-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.event-facts div {
  min-width: 145px;
  border-left: 3px solid var(--lime);
  padding: 2px 12px;
}

.event-facts dt,
.detail-grid dt {
  color: #a9aea2;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.event-facts dd,
.detail-grid dd {
  margin: 3px 0 0;
  font-weight: 800;
  line-height: 1.3;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.hero__actions p {
  max-width: 220px;
  margin: 0;
  color: #b9bdb3;
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero__visual {
  position: absolute;
  inset: 0 calc((100vw - min(100vw - 40px, var(--container))) / -2) 0 41%;
  z-index: 0;
  margin: 0;
  overflow: hidden;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 45%;
}

.principle-bar {
  border-top: 1px solid rgba(213, 239, 10, 0.45);
  border-bottom: 1px solid rgba(213, 239, 10, 0.45);
  background: var(--ink-soft);
  color: var(--white);
}

.principle-bar__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
}

.principle-bar span,
.principle-bar strong {
  font-size: clamp(1rem, 2.3vw, 1.35rem);
}

.principle-bar strong {
  color: var(--lime);
}

.section {
  padding-block: 92px;
}

.section--dark {
  background: var(--ink-soft);
  color: var(--white);
}

.section--soft {
  background: #ecefe6;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.result-card h2,
.about__copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
}

.section-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--dark .section-heading > p:last-child {
  color: #c6c9c0;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.signup {
  position: relative;
  background: var(--paper);
}

.signup__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.lead-form {
  border: 1px solid #dce0d5;
  border-top: 5px solid var(--lime);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #2a2d27;
  font-size: 0.88rem;
  font-weight: 800;
}

.optional {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #b8beb1;
  border-radius: var(--radius-small);
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.field input:hover,
.field select:hover {
  border-color: #777e70;
}

.field input:focus,
.field select:focus {
  border-color: #687600;
  box-shadow: 0 0 0 3px rgba(183, 208, 0, 0.2);
}

.field input.is-invalid,
.field select.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: var(--error);
  font-size: 0.75rem;
  line-height: 1.35;
}

.honeypot,
.lead-target {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 22px;
  color: #4d5149;
  cursor: pointer;
  font-size: 0.83rem;
  line-height: 1.5;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: #7f9200;
}

.consent-error {
  min-height: 18px;
  margin: 4px 0 10px 32px;
}

.form-privacy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.form-privacy a {
  text-underline-offset: 3px;
}

.form-status {
  display: none;
  margin-top: 16px;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border: 1px solid #f1b7b2;
  background: #fff2f0;
  color: #8f1f17;
}

.form-status.is-success {
  border: 1px solid #add9ba;
  background: #effaf2;
  color: #145d2c;
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px 80px;
}

.problem-copy {
  color: #d3d6ce;
  font-size: 1.06rem;
}

.problem-copy p {
  margin: 0 0 18px;
}

.problem-grid blockquote {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid rgba(213, 239, 10, 0.44);
  border-left: 7px solid var(--lime);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 30px clamp(26px, 5vw, 52px);
  background: #10120e;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
}

.problem-grid blockquote span {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.topic-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 28px;
  background: var(--white);
}

.topic-card > span {
  display: inline-block;
  margin-bottom: 42px;
  color: #687600;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.topic-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.topic-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.topic-card--accent {
  border-color: var(--lime-deep);
  background: var(--lime);
}

.topic-card--accent > span,
.topic-card--accent p {
  color: var(--ink);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: stretch;
  gap: 70px;
}

.audience-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  border-top: 1px solid #cbd0c4;
  padding: 14px 0;
  font-weight: 750;
}

.audience-list li:last-child {
  border-bottom: 1px solid #cbd0c4;
}

.result-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 52px);
  background: var(--ink-soft);
  color: var(--white);
}

.result-card h2 {
  color: var(--lime);
}

.result-card > p:last-child {
  margin: 24px 0 0;
  color: #d8dbd3;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  align-items: stretch;
  gap: clamp(42px, 7vw, 90px);
}

.about__photo {
  min-height: 520px;
  border: 1px solid rgba(213, 239, 10, 0.36);
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, transparent 68%, rgba(10, 11, 9, 0.42)),
    url("../images/banner-decisao-de-campo.png");
  background-position: center, 74% center;
  background-size: cover, auto 100%;
  background-repeat: no-repeat;
}

.about__copy {
  align-self: center;
}

.about__role {
  margin: 16px 0 26px;
  color: var(--lime);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about__copy > p:not(.eyebrow):not(.about__role) {
  margin: 0 0 18px;
  color: #ced1c9;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 44px 0 0;
}

.detail-grid div {
  min-height: 132px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--lime-deep);
  border-radius: var(--radius-small);
  padding: 24px;
  background: var(--white);
}

.detail-grid dt {
  color: #63695d;
}

.detail-grid dd {
  margin-top: 12px;
  font-size: 1.05rem;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.64fr 1.36fr;
  gap: 70px;
}

.faq-list {
  border-top: 1px solid #bfc5b7;
}

.faq-list details {
  border-bottom: 1px solid #bfc5b7;
}

.faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 3px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #7c8375;
  border-radius: 50%;
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 50px 22px 0;
  color: var(--muted);
}

.final-cta {
  border-top: 1px solid rgba(213, 239, 10, 0.5);
  background: var(--ink);
  color: var(--white);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  min-height: 340px;
  padding-block: 60px;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta__inner > div > p:last-child {
  margin: 20px 0 0;
  color: #c6c9c0;
}

.site-footer {
  padding-block: 48px 24px;
  background: #050604;
  color: #e8eae4;
}

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

.site-footer strong {
  color: var(--lime);
  text-transform: uppercase;
}

.site-footer p {
  margin: 8px 0 0;
  color: #9ca097;
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.site-footer a {
  color: #d4d7cf;
  font-size: 0.86rem;
  text-underline-offset: 4px;
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 34px;
  border-top: 1px solid #2b2e28;
  padding-top: 22px;
}

.mobile-sticky-cta {
  display: none;
}

/* Obrigado */
.simple-header {
  border-bottom: 1px solid rgba(213, 239, 10, 0.3);
  background: var(--ink);
  color: var(--white);
}

.simple-header__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
}

.thankyou {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding-block: 60px;
  background:
    linear-gradient(105deg, rgba(10, 11, 9, 0.97) 0%, rgba(10, 11, 9, 0.87) 56%, rgba(10, 11, 9, 0.3) 100%),
    url("../images/banner-decisao-de-campo.png") 72% center / cover no-repeat;
  color: var(--white);
}

.thankyou__card {
  width: min(100%, 700px);
  border: 1px solid rgba(213, 239, 10, 0.5);
  border-radius: var(--radius);
  padding: clamp(28px, 6vw, 58px);
  background: rgba(10, 11, 9, 0.92);
  box-shadow: var(--shadow);
}

.thankyou h1,
.privacy-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.thankyou__lead {
  margin: 22px 0 0;
  color: #d8dbd3;
  font-size: 1.08rem;
}

.thankyou__event {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.thankyou__event div {
  border-left: 3px solid var(--lime);
  padding: 7px 12px;
}

.thankyou__event span {
  display: block;
  color: #aeb2a9;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.thankyou__event strong {
  display: block;
  margin-top: 3px;
}

.thankyou__note {
  margin: 16px 0 0;
  color: #aeb2a9;
  font-size: 0.78rem;
  text-align: center;
}

.link-unavailable {
  display: none;
  margin: 14px 0 0;
  border: 1px solid #ce9956;
  border-radius: 8px;
  padding: 11px 13px;
  background: #2b2114;
  color: #f3d7b3;
  font-size: 0.82rem;
}

.link-unavailable.is-visible {
  display: block;
}

/* Privacidade */
.privacy-hero {
  padding-block: 76px;
  background: var(--ink);
  color: var(--white);
}

.privacy-hero p:last-child {
  max-width: 650px;
  margin: 22px 0 0;
  color: #ccd0c6;
}

.privacy-content {
  padding-block: 70px 90px;
}

.privacy-content__inner {
  max-width: 820px;
}

.privacy-content h2 {
  margin: 40px 0 10px;
  font-size: 1.35rem;
  line-height: 1.3;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p,
.privacy-content li {
  color: #4e534a;
}

.privacy-content a {
  color: #4d5900;
  font-weight: 800;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .hero__copy {
    width: 64%;
  }

  .hero__visual {
    left: 35%;
  }

  .hero::after {
    background: linear-gradient(90deg, #090a08 0%, rgba(9, 10, 8, 0.97) 43%, rgba(9, 10, 8, 0.25) 100%);
  }

  .signup__grid,
  .audience-grid,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 42px;
  }

  .faq-wrap {
    gap: 34px;
  }
}

@media (max-width: 759px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header__inner {
    min-height: 64px;
  }

  .brand__name {
    font-size: 1.02rem;
  }

  .brand__edition {
    padding: 1px 6px;
    font-size: 0.72rem;
  }

  .site-header .button {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .hero__inner {
    min-height: auto;
    display: block;
    width: 100%;
  }

  .hero__copy {
    width: min(calc(100% - 28px), 620px);
    margin-inline: auto;
    padding-block: 54px 38px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.65rem);
  }

  .hero__lead {
    margin-top: 20px;
  }

  .event-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
  }

  .event-facts div:last-child {
    grid-column: 1 / -1;
  }

  .hero__actions {
    display: block;
    margin-top: 26px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions p {
    max-width: none;
    margin-top: 12px;
    text-align: center;
  }

  .hero__visual {
    position: relative;
    inset: auto;
    z-index: 4;
    display: block;
    width: 100%;
    aspect-ratio: 864 / 1030;
  }

  .hero__visual img {
    object-position: center;
  }

  .principle-bar__inner {
    min-height: 92px;
    display: block;
    padding-block: 20px;
  }

  .principle-bar span,
  .principle-bar strong {
    display: block;
  }

  .section {
    padding-block: 66px;
  }

  .section-heading h2,
  .result-card h2,
  .about__copy h2,
  .final-cta h2 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .signup__grid {
    gap: 38px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .field--full {
    grid-column: auto;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .problem-grid blockquote {
    grid-column: auto;
    padding: 24px 22px;
  }

  .topic-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .topic-card {
    min-height: auto;
    padding: 24px;
  }

  .topic-card > span {
    margin-bottom: 26px;
  }

  .audience-grid {
    gap: 38px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about__photo {
    min-height: 420px;
    background-position: center, 71% center;
    background-size: cover, auto 100%;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .detail-grid div {
    min-height: auto;
  }

  .faq-list details p {
    margin-right: 20px;
  }

  .final-cta__inner {
    min-height: 400px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer__grid,
  .site-footer__legal {
    display: block;
  }

  .site-footer nav {
    display: grid;
    justify-content: flex-start;
    margin-top: 28px;
  }

  .site-footer__legal p:last-child {
    margin-top: 18px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(10, 11, 9, 0.45);
    border-radius: 8px;
    background: var(--lime);
    color: var(--ink);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-sticky-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(90px);
  }

  .thankyou {
    align-items: start;
    padding-block: 34px;
    background:
      linear-gradient(180deg, rgba(10, 11, 9, 0.88), rgba(10, 11, 9, 0.98)),
      url("../images/arte-mobile-decisao-de-campo.png") center top / cover no-repeat;
  }

  .thankyou__event {
    grid-template-columns: 1fr;
  }

  .privacy-hero {
    padding-block: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .mobile-sticky-cta,
  .button,
  .lead-form {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}
