:root {
  --ink: #121214;
  --ink-soft: #1a1a1d;
  --paper: #f4f4f4;
  --white: #ffffff;
  --lime: #d2e114;
  --lime-hover: #c2d011;
  --neon: #55ff00;
  --muted: #66666f;
  --line: #dedee2;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

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

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background-color: var(--paper);
  background-image: url("img/hero-desktop.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding-block: 34px 70px;
}

.hero__content {
  width: min(610px, 50%);
}

.brand-logo {
  width: 172px;
  height: auto;
  margin-bottom: 22px;
  padding: 8px 14px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: var(--ink);
}

.host-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 16px;
  border: 1px solid #303034;
  border-radius: 999px;
  background: var(--ink-soft);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.host-badge svg {
  width: 19px;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.event-label {
  margin: 23px 0 11px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-date {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(24, 24, 27, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.event-date svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.event-date > span {
  color: #a9b500;
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin: 24px 0 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(72px, 7.35vw, 112px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero__title .accent {
  color: var(--lime);
}

.hero__promise {
  max-width: 520px;
  margin: 24px 0 0;
  color: #34343b;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.58;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 590px;
  margin: 24px 0 0;
  padding: 0 0 25px;
  border-bottom: 1px solid rgba(24, 24, 27, 0.16);
  list-style: none;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__proof svg {
  width: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lead-card {
  width: min(100%, 540px);
  margin-top: 26px;
  padding: 25px 27px 21px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.lead-card__heading {
  margin-bottom: 18px;
  text-align: center;
}

.lead-card__heading p {
  margin: 0 0 5px;
  color: #7c8300;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lead-card__heading h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

#lead-form {
  display: grid;
  gap: 13px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field > span:first-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.field__control {
  position: relative;
  display: block;
}

.field__control svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 19px;
  transform: translateY(-50%);
  fill: none;
  stroke: #686872;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  pointer-events: none;
}

.field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px 12px 45px;
  border: 1px solid #dedee2;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input::placeholder {
  color: #9a9aa2;
  font-weight: 500;
}

.field input:focus {
  border-color: var(--lime);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(210, 225, 20, 0.24);
}

.field input[aria-invalid="true"] {
  border-color: #c43f3f;
  box-shadow: 0 0 0 3px rgba(196, 63, 63, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: var(--radius-sm);
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button--primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 7px 22px rgba(210, 225, 20, 0.36);
}

.button--primary:hover {
  background: var(--lime-hover);
  box-shadow: 0 9px 28px rgba(210, 225, 20, 0.45);
}

.button--primary[disabled] {
  transform: none;
  cursor: wait;
  opacity: 0.72;
}

.button__loading {
  display: none;
}

.button--primary[aria-busy="true"] .button__label {
  display: none;
}

.button--primary[aria-busy="true"] .button__loading {
  display: inline;
}

.form-feedback {
  display: none;
  margin: 0;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

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

.form-feedback.is-error {
  background: #fff0f0;
  color: #a32929;
}

.form-privacy {
  margin: 0;
  color: #67676f;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.form-privacy a {
  font-weight: 800;
}

.lead-card__delivery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  color: #55555e;
  font-size: 10px;
  font-weight: 700;
}

.lead-card__delivery svg {
  width: 13px;
  fill: var(--ink);
  stroke: var(--ink);
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lead-card__delivery i {
  color: #aaaab0;
  font-style: normal;
}

.hero__signature {
  position: absolute;
  right: 42px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border: 1px solid #333337;
  border-bottom: 5px solid var(--lime);
  border-radius: 16px;
  background: var(--ink-soft);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  color: var(--white);
  text-transform: uppercase;
}

.hero__signature span {
  font-weight: 800;
}

.hero__signature i {
  color: var(--lime);
  font-style: normal;
}

.hero__signature small {
  color: #a7a7ae;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.section {
  padding-block: 86px;
}

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

.section-heading {
  max-width: 880px;
  margin-bottom: 40px;
}

.section-heading h2,
.speaker__content h2,
.final-cta h2,
.thank-you h1,
.legal-content h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(52px, 5vw, 78px);
  line-height: 0.95;
}

.section-heading h2 span {
  color: var(--lime);
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.section-heading--light p {
  color: #a9a9b0;
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.learning-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid #2e2e33;
  border-radius: var(--radius-md);
  background: var(--ink-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.learning-card:hover {
  transform: translateY(-5px);
  border-color: #4d4d53;
  background: #202024;
}

.learning-card b {
  display: block;
  margin-bottom: 24px;
  color: var(--lime);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.learning-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.learning-card p {
  margin: 13px 0 0;
  color: #a5a5ad;
  font-size: 13px;
  line-height: 1.55;
}

.speaker,
.audience {
  background: var(--paper);
}

.speaker__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
}

.speaker__photo {
  height: 650px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
}

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

.section-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.speaker__content h2 {
  font-size: clamp(62px, 6.5vw, 98px);
  line-height: 0.88;
}

.speaker__content h2 span {
  color: #a4b600;
}

.speaker__bio {
  margin-top: 30px;
  color: #55555e;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.speaker__bio p {
  margin: 0 0 16px;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin: 32px 0 0;
}

.event-facts div {
  padding: 18px 20px;
  border-left: 6px solid var(--lime);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.04);
}

.event-facts dt {
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 0;
  color: #66666f;
  font-size: 13px;
  font-weight: 600;
}

.audience {
  padding-top: 20px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-grid li {
  display: flex;
  align-items: center;
  min-height: 105px;
  padding: 22px 24px;
  border: 1px solid #e0e0e4;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.035);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.4;
}

.final-cta {
  padding-block: 75px;
  background: var(--lime);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta__inner > div {
  max-width: 950px;
}

.final-cta h2 {
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.9;
}

.final-cta p {
  max-width: 710px;
  margin: 20px 0 0;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.5;
}

.button--dark {
  flex: 0 0 auto;
  min-height: 62px;
  padding-inline: 34px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.button--dark:hover {
  background: #29292e;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 35px 20px;
  border-top: 1px solid #29292d;
  background: var(--ink);
  color: #777780;
  text-align: center;
}

.site-footer img {
  width: 105px;
  height: auto;
  margin-bottom: 4px;
}

.site-footer p {
  margin: 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.site-footer a {
  margin-top: 5px;
  color: #b5b5bb;
  font-size: 11px;
  font-weight: 750;
}

/* Página de obrigado */
.thank-you-page {
  min-height: 100svh;
  background: var(--ink);
}

.thank-you {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(540px, 0.9fr);
  min-height: 100svh;
}

.thank-you__visual {
  background-color: var(--paper);
  background-image: url("img/hero-desktop.png");
  background-position: 62% center;
  background-size: cover;
}

.thank-you__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 7vw, 100px);
  background:
    radial-gradient(circle at 85% 15%, rgba(210, 225, 20, 0.12), transparent 30%),
    var(--ink);
  color: var(--white);
}

.thank-you__card > img {
  width: 175px;
  height: auto;
  margin-bottom: 38px;
}

.success-mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  place-items: center;
  box-shadow: 0 0 0 10px rgba(210, 225, 20, 0.08);
}

.success-mark svg {
  width: 34px;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.thank-you__eyebrow {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.thank-you h1 {
  font-size: clamp(62px, 7vw, 104px);
  line-height: 0.88;
}

.thank-you__message {
  max-width: 660px;
  margin: 25px 0 30px;
  color: #c2c2c8;
  font-size: 17px;
  line-height: 1.65;
}

.button--whatsapp {
  min-height: 60px;
  padding-inline: 32px;
  background: var(--neon);
  color: #0b1308;
  box-shadow: 0 10px 30px rgba(85, 255, 0, 0.22);
}

.button--whatsapp:hover {
  background: #71ff2a;
  box-shadow: 0 13px 36px rgba(85, 255, 0, 0.3);
}

.redirect-notice {
  margin: 21px 0 0;
  color: #d5d5da;
  font-size: 13px;
}

.redirect-notice strong {
  color: var(--lime);
}

.thank-you__help {
  margin: 8px 0 0;
  color: #7d7d85;
  font-size: 11px;
}

/* Política de privacidade */
.legal-page {
  background: var(--paper);
}

.legal-header {
  display: flex;
  align-items: center;
  min-height: 98px;
  padding: 18px max(24px, calc((100vw - 1000px) / 2));
  background: var(--ink);
}

.legal-header img {
  width: 130px;
  height: auto;
}

.legal-content {
  width: min(100% - 40px, 1000px);
  margin-inline: auto;
  padding-block: 70px 90px;
}

.legal-content h1 {
  margin-bottom: 8px;
  font-size: clamp(54px, 7vw, 84px);
  line-height: 0.95;
}

.legal-updated {
  margin: 0 0 35px !important;
  color: #76767e !important;
  font-size: 13px !important;
}

.legal-content h2 {
  margin: 36px 0 10px;
  font-size: 19px;
}

.legal-content p,
.legal-content li {
  color: #4f4f58;
  font-size: 15px;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a:not(.button) {
  font-weight: 700;
}

.legal-back {
  margin-top: 34px;
}

@media (max-width: 1180px) {
  .hero__signature {
    display: none;
  }

  .learning-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .learning-card {
    min-height: 230px;
  }
}

@media (max-width: 960px) {
  .hero {
    background-color: var(--ink);
    background-image: url("img/hero-mobile.png");
    background-position: top center;
    background-size: 100% auto;
  }

  .hero::after {
    position: absolute;
    inset: 360px 0 0;
    z-index: 0;
    background: linear-gradient(to bottom, transparent, var(--ink) 180px, var(--ink));
    content: "";
    pointer-events: none;
  }

  .hero__inner {
    padding-top: min(74vw, 680px);
    padding-bottom: 50px;
  }

  .hero__content {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
    color: var(--white);
  }

  .brand-logo {
    width: 160px;
    margin-inline: auto;
  }

  .host-badge {
    display: flex;
    width: max-content;
    margin-inline: auto;
  }

  .event-label {
    color: var(--white);
    text-align: center;
  }

  .event-date {
    display: flex;
    width: max-content;
    margin-inline: auto;
    border-color: #39393e;
    background: rgba(18, 18, 20, 0.72);
    color: var(--white);
  }

  .hero__title {
    align-items: center;
    font-size: clamp(66px, 12vw, 104px);
    text-align: center;
  }

  .hero__promise {
    margin-inline: auto;
    color: #d4d4d8;
    text-align: center;
  }

  .hero__proof {
    border-color: #36363a;
  }

  .lead-card {
    margin-inline: auto;
    color: var(--ink);
  }

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

  .speaker__photo {
    height: min(116vw, 650px);
  }

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

  .final-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .thank-you {
    grid-template-columns: 1fr;
  }

  .thank-you__visual {
    display: none;
  }

  .thank-you__card {
    min-height: 100svh;
    background:
      linear-gradient(to bottom, rgba(18, 18, 20, 0.3), var(--ink) 420px),
      url("img/hero-mobile.png") top center / min(100%, 760px) auto no-repeat,
      var(--ink);
    padding-top: min(75vw, 560px);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1400px);
  }

  .hero::after {
    inset-block-start: 270px;
  }

  .hero__inner {
    padding-top: min(91vw, 560px);
  }

  .brand-logo {
    width: 135px;
    margin-bottom: 18px;
  }

  .host-badge {
    padding-inline: 13px;
    font-size: 9px;
  }

  .event-label {
    margin-top: 20px;
    font-size: 10px;
  }

  .event-date {
    gap: 6px;
    padding: 9px 11px;
    font-size: 9px;
  }

  .event-date svg {
    width: 16px;
  }

  .hero__title {
    margin-top: 22px;
    font-size: clamp(56px, 18vw, 82px);
    line-height: 0.84;
  }

  .hero__promise {
    margin-top: 20px;
    font-size: 14px;
  }

  .hero__proof {
    gap: 7px;
    margin-top: 22px;
  }

  .hero__proof li {
    flex-direction: column;
    gap: 7px;
    text-align: center;
    font-size: 8px;
  }

  .lead-card {
    padding: 22px 16px 18px;
    border-radius: 20px;
  }

  .lead-card__heading h2 {
    font-size: 17px;
  }

  .button {
    width: 100%;
    padding-inline: 14px;
    font-size: 12px;
  }

  .lead-card__delivery {
    font-size: 8px;
  }

  .section {
    padding-block: 62px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 49px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .learning-grid,
  .audience-grid,
  .event-facts {
    grid-template-columns: 1fr;
  }

  .learning-card {
    min-height: 0;
    padding: 22px;
  }

  .learning-card b {
    margin-bottom: 14px;
    font-size: 42px;
  }

  .speaker__grid {
    gap: 38px;
  }

  .speaker__photo {
    border-radius: 24px;
  }

  .speaker__content h2 {
    font-size: 62px;
  }

  .speaker__bio {
    font-size: 15px;
  }

  .audience {
    padding-top: 0;
  }

  .audience-grid li {
    min-height: 0;
    padding: 20px;
    font-size: 14px;
  }

  .final-cta {
    padding-block: 58px;
  }

  .final-cta__inner {
    gap: 32px;
    text-align: center;
  }

  .final-cta h2 {
    font-size: 50px;
  }

  .final-cta p {
    font-size: 14px;
  }

  .thank-you__card {
    align-items: center;
    padding: min(82vw, 490px) 24px 45px;
    text-align: center;
  }

  .thank-you__card > img {
    width: 145px;
    margin-bottom: 28px;
  }

  .success-mark {
    width: 54px;
    height: 54px;
  }

  .thank-you h1 {
    font-size: 60px;
  }

  .thank-you__message {
    font-size: 14px;
  }

  .legal-content {
    padding-block: 50px 65px;
  }

  .legal-content h1 {
    font-size: 54px;
  }
}

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

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