:root {
  --brand: #ba5208;
  --brand-strong: #d6620c;
  --brand-dark: #8f3d04;
  --brand-soft: #f5e6dc;
  --light: #f2f2f2;
  --white: #ffffff;
  --dark: #251e20;
  --dark-2: #191416;
  --text: #51494b;
  --border: rgba(37, 30, 32, 0.12);
  --shadow: 0 30px 90px rgba(37, 30, 32, 0.16);
  --shadow-soft: 0 18px 55px rgba(37, 30, 32, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

.header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  padding:12px 0;
}

.header__content,
.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand__mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 15px;
  background: var(--brand);
  box-shadow: 0 12px 30px rgba(186, 82, 8, 0.28);
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.brand__text {
  display: flex;
  flex-direction: column;
  font-family: "Oswald", sans-serif;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand__text strong {
  font-size: 15px;
  letter-spacing: 0.03em;
}

.brand__text small {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 600;
}

.header__nav a {
  transition: color 0.2s ease;
}

.header__nav a:hover {
  color: var(--white);
}

.header__cta {
  padding: 12px 21px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: 0.25s ease;
}

.header__cta:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.hero {
  position: relative;
      min-height:100vh;
    display:flex;
    align-items:center;
    padding:90px 0 40px;
  background:
    radial-gradient(circle at 14% 20%, rgba(186, 82, 8, 0.26), transparent 30%),
    linear-gradient(135deg, #2d2020 0%, #231d1f 52%, #171315 100%);
  color: var(--white);
  overflow: hidden;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black 70%, transparent);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  background: rgba(186, 82, 8, 0.16);
  filter: blur(14px);
}

.hero__glow--one {
  top: 8%;
  right: 4%;
  width: 390px;
  height: 390px;
}

.hero__glow--two {
  bottom: -16%;
  left: 22%;
  width: 470px;
  height: 470px;
}

.hero__layout {
  position: relative;
  z-index: 2;
  display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:70px;
    min-height:calc(100vh - 90px);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: #ffad72;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.numbers__copy h2,
.journey__copy h2,
.diagnostic__copy h2,
.final-form__copy h2,
.modal__dialog h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(54px, 5.4vw, 78px);
}

.hero h1 span {
  color: #ef6b12;
}

.hero__lead {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 18px;
  line-height: 1.7;
}

.hero__bullets {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  list-style: none;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.hero__bullets li > span {
  display: grid;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: rgba(186, 82, 8, 0.22);
  color: #ffad72;
  font-weight: 900;
}

.hero__book-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.hero__book-proof img {
  width: 58px;
  height: 86px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: rotate(-3deg);
}

.hero__book-proof strong,
.hero__book-proof p {
  display: block;
}

.hero__book-proof strong {
  font-size: 14px;
}

.hero__book-proof p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.lead-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.28);
  color: var(--dark);
  backdrop-filter: blur(14px);
}

.lead-card__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.lead-card__icon {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--brand);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.lead-card__header small {
  display: block;
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-card__header h2 {
  margin-top: 2px;
  font-size: 22px;
  line-height: 1.2;
}

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

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
}

.field input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(37, 30, 32, 0.14);
  border-radius: 12px;
  outline: none;
  background: var(--white);
  color: var(--dark);
  transition: 0.2s ease;
}

.field input::placeholder {
  color: #8c8587;
}

.field input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(186, 82, 8, 0.1);
}

.field input.invalid {
  border-color: #c43e3e;
  box-shadow: 0 0 0 4px rgba(196, 62, 62, 0.08);
}

.field__error,
.consent-error {
  display: block;
  margin-top: 5px;
  color: #c43e3e;
  font-size: 10px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text);
  cursor: pointer;
  font-size: 11px;
}

.checkbox input {
  margin-top: 3px;
  accent-color: var(--brand);
}

.consent-error {
  min-height: 18px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 23px;
  border-radius: 13px;
  font-weight: 800;
  transition: 0.25s ease;
}

.button > span {
  font-size: 19px;
  transition: transform 0.25s ease;
}

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

.button:hover > span {
  transform: translateX(4px);
}

.button--primary {
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: var(--white);
  box-shadow: 0 16px 40px rgba(186, 82, 8, 0.26);
}

.button--dark {
  margin-top: 28px;
  background: var(--dark);
  color: var(--white);
}

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

.lead-card__privacy {
  margin-top: 11px;
  color: #8b8385;
  font-size: 10px;
  text-align: center;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-hint span {
  color: var(--brand);
}

.section {
  padding: 110px 0;
}

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

.split,
.numbers__grid,
.journey,
.final-form__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.book-showcase {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.book-showcase__halo {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 82, 8, 0.18), transparent 68%);
}

.book-showcase__stack {
  position: absolute;
  width: 310px;
  height: 445px;
  border-radius: 10px;
  background: #d5d1d2;
  box-shadow: var(--shadow);
  transform: translate(23px, 15px) rotate(5deg);
}

.book-showcase > img {
  position: relative;
  z-index: 2;
  width: 310px;
  border-radius: 8px;
  box-shadow: 0 35px 80px rgba(37, 30, 32, 0.24);
  transform: rotate(-3deg);
}

.book-showcase__badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(37, 30, 32, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.book-showcase__badge span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
}

.book-showcase__badge p {
  font-size: 12px;
  font-weight: 700;
}

.book-showcase__badge--top {
  top: 14%;
  right: 1%;
}

.book-showcase__badge--bottom {
  bottom: 14%;
  left: 2%;
}

.section-copy h2,
.section-heading h2,
.numbers__copy h2,
.journey__copy h2,
.diagnostic__copy h2,
.final-form__copy h2 {
  font-size: clamp(36px, 4.2vw, 54px);
}

.section-copy > p,
.section-heading > p,
.numbers__copy > p,
.journey__copy > p,
.diagnostic__copy > p,
.final-form__copy > p {
  margin-top: 18px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.quote-card {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(186, 82, 8, 0.18);
  border-radius: 18px;
  background: var(--white);
}

.quote-card > span {
  color: var(--brand);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 0.9;
}

.quote-card p {
  color: var(--dark);
  font-weight: 700;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

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

.content-card {
  position: relative;
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  overflow: hidden;
  transition: 0.3s ease;
}

.content-card:hover {
  border-color: rgba(186, 82, 8, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-7px);
}

.content-card__number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(37, 30, 32, 0.07);
  font-family: "Oswald", sans-serif;
  font-size: 44px;
  font-weight: 700;
}

.content-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 900;
}

.content-card h3 {
  margin-top: 30px;
  font-family: "Oswald", sans-serif;
  font-size: 23px;
  text-transform: uppercase;
}

.content-card p {
  margin-top: 11px;
  color: var(--text);
  font-size: 14px;
}

.numbers {
  padding: 95px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(186, 82, 8, 0.28), transparent 25%),
    var(--dark);
  color: var(--white);
}

.section-label--light {
  color: #ffad72;
}

.numbers__copy > p,
.diagnostic__copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.financial-example {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.financial-example__top small,
.financial-example__top strong {
  display: block;
}

.financial-example__top small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  text-transform: uppercase;
}

.financial-example__top strong {
  margin-top: 3px;
  font-size: 18px;
}

.financial-example__rows {
  display: grid;
  gap: 12px;
  margin-top: 25px;
}

.financial-example__rows > div,
.financial-example__result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 17px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.financial-example__rows span {
  color: rgba(255, 255, 255, 0.65);
}

.financial-example__result {
  margin-top: 14px;
  background: var(--brand);
}

.financial-example__result strong {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
}

.journey {
  grid-template-columns: 0.95fr 1.05fr;
}

.journey__steps {
  display: grid;
  gap: 14px;
}

.journey__steps article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(37, 30, 32, 0.05);
}

.journey__steps article > span {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: var(--dark);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
}

.journey__steps article:last-child > span {
  background: var(--brand);
}

.journey__steps h3 {
  font-family: "Oswald", sans-serif;
  font-size: 19px;
  text-transform: uppercase;
}

.journey__steps p {
  color: var(--text);
  font-size: 13px;
}

.diagnostic {
  padding: 90px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(186, 82, 8, 0.25), transparent 25%),
    linear-gradient(135deg, #271d1e, #181315);
  color: var(--white);
}

.diagnostic__box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 75px;
}

.diagnostic__copy ul {
  display: grid;
  gap: 11px;
  margin-top: 28px;
  list-style: none;
}

.diagnostic__copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.84);
}

.diagnostic__copy li span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(186, 82, 8, 0.25);
  color: #ffad72;
  font-weight: 900;
}

.diagnostic__card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.diagnostic__card small {
  color: #ffad72;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.diagnostic__card h3 {
  margin-top: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 31px;
  line-height: 1.15;
  text-transform: uppercase;
}

.diagnostic__card p {
  margin: 15px 0 24px;
  color: rgba(255, 255, 255, 0.67);
}

.final-form {
  padding: 110px 0;
  background:
    linear-gradient(90deg, rgba(186, 82, 8, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(186, 82, 8, 0.035) 1px, transparent 1px),
    #fbf8f5;
  background-size: 48px 48px;
}

.final-form__grid {
  max-width: 1040px;
}

.final-form__trust {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 28px;
  padding: 19px;
  border: 1px solid rgba(186, 82, 8, 0.14);
  border-radius: 16px;
  background: var(--white);
}

.final-form__trust > span {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 900;
}

.final-form__trust p {
  color: var(--text);
  font-size: 13px;
}

.final-form__trust strong {
  display: block;
  color: var(--dark);
}

.lead-card--bottom {
  box-shadow: var(--shadow);
}

.consultoria-float {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 17px 12px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  box-shadow: 0 16px 42px rgba(186, 82, 8, 0.34);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  transition: 0.25s ease;
}

.consultoria-float:hover {
  transform: translateY(-3px);
}

.consultoria-float__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.modal {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.show {
  display: grid;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 15, 0.75);
  backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 34px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
}

.modal__dialog h2 {
  font-size: 36px;
}

.modal__dialog > p {
  margin: 14px 0 24px;
  color: var(--text);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light);
  color: var(--dark);
  font-size: 24px;
}

.footer {
  padding: 28px 0;
  background: #171214;
  color: rgba(255, 255, 255, 0.52);
}

.footer__content > p,
.footer__links {
  font-size: 11px;
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__links a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



.form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.antirobot {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 108px 38px;
  align-items: center;
  gap: 9px;
  margin: 2px 0 14px;
  padding: 10px 11px;
  border: 1px solid rgba(186, 82, 8, 0.16);
  border-radius: 12px;
  background: #fbf6f2;
}

.antirobot label {
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
}

.antirobot label strong {
  color: var(--brand);
  font-size: 13px;
}

.antirobot input {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(37, 30, 32, 0.14);
  border-radius: 9px;
  outline: none;
  background: var(--white);
  color: var(--dark);
  text-align: center;
}

.antirobot input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(186, 82, 8, 0.09);
}

.antirobot input.invalid { border-color: #c43e3e; }

.antirobot__refresh {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  background: var(--dark);
  color: var(--white);
  font-size: 17px;
  transition: 0.2s ease;
}

.antirobot__refresh:hover {
  background: var(--brand);
  transform: rotate(20deg);
}

.antirobot__error {
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  color: #c43e3e;
  font-size: 10px;
}

@media (min-width: 1021px) and (max-height: 950px) {
  .header { padding: 10px 0; }
  .brand__mark { width: 44px; height: 44px; font-size: 18px; }
  .brand__text strong { font-size: 13px; }
  .brand__text small { font-size: 10px; }
  .hero { min-height: 100svh; padding: 76px 0 28px; }
  .hero__layout { gap: 48px; }
  .eyebrow { margin-bottom: 8px; font-size: 10px; }
  .hero h1 { max-width: 620px; font-size: clamp(46px, 4.25vw, 62px); line-height: 0.97; }
  .hero__lead { margin-top: 13px; font-size: 14px; line-height: 1.5; }
  .hero__bullets { gap: 6px; margin-top: 14px; }
  .hero__bullets li { font-size: 11px; }
  .hero__bullets li > span { width: 22px; height: 22px; }
  .hero__book-proof { margin-top: 12px; }
  .hero__book-proof img { width: 40px; height: 60px; }
  .hero__book-proof strong { font-size: 12px; }
  .hero__book-proof p { font-size: 10px; }
  .lead-card { padding: 19px; border-radius: 22px; }
  .lead-card__header { margin-bottom: 11px; }
  .lead-card__icon { width: 39px; height: 39px; font-size: 20px; }
  .lead-card__header h2 { font-size: 18px; }
  .field { margin-bottom: 7px; }
  .field label { margin-bottom: 3px; font-size: 10px; }
  .field input { height: 40px; font-size: 13px; }
  .checkbox { font-size: 9px; }
  .consent-error { min-height: 10px; }
  .antirobot { margin-bottom: 9px; padding: 6px 8px; }
  .antirobot input, .antirobot__refresh { height: 32px; }
  .antirobot__refresh { width: 32px; }
  .button { min-height: 44px; padding: 9px 18px; font-size: 13px; }
  .lead-card__privacy { margin-top: 5px; font-size: 8px; }
  .scroll-hint { bottom: 5px; }
}

@media (max-width: 1020px) {
  .header__nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__layout,
  .split,
  .numbers__grid,
  .journey,
  .diagnostic__box,
  .final-form__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    text-align: center;
        display:flex;
    flex-direction:column;
    justify-content:center;
  }

  .hero__lead,
  .hero__bullets {
    margin-inline: auto;
  }

  .hero__bullets {
    max-width: 560px;
    text-align: left;
  }

  .hero__book-proof {
    justify-content: center;
    text-align: left;
  }

  .lead-card {
    max-width: 650px;
    margin-inline: auto;
  }

  .book-showcase {
    min-height: 520px;
  }

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

  .diagnostic__card {
    max-width: 600px;
  }
}

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

  .header {
    padding: 16px 0;
  }

  .brand__mark {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .brand__text strong {
    font-size: 12px;
  }

  .brand__text small {
    font-size: 9px;
  }

  .header__cta {
    padding: 9px 14px;
    font-size: 11px;
  }

  .hero {
    padding: 100px 0 74px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__layout {
    gap: 42px;
  }

  .form-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .lead-card {
    padding: 23px 18px;
    border-radius: 23px;
  }

  .scroll-hint {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .split,
  .numbers__grid,
  .journey,
  .diagnostic__box,
  .final-form__grid {
    gap: 48px;
  }

  .book-showcase {
    min-height: 430px;
  }

  .book-showcase__stack,
  .book-showcase > img {
    width: 230px;
  }

  .book-showcase__stack {
    height: 335px;
  }

  .book-showcase__badge--top {
    top: 11%;
    right: -1%;
  }

  .book-showcase__badge--bottom {
    bottom: 11%;
    left: -1%;
  }

  .content-card {
    min-height: auto;
  }

  .numbers,
  .diagnostic,
  .final-form {
    padding: 75px 0;
  }

  .consultoria-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
  }

  .consultoria-float__text {
    display: none;
  }

  .consultoria-float__icon {
    width: 38px;
    height: 38px;
  }

  .antirobot { grid-template-columns: 1fr 88px 36px; }
  .antirobot label { font-size: 10px; }

  .footer__content {
    flex-direction: column;
    text-align: center;
  }

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


/* Feedback de envio dos formulários */
.form-feedback {
  display: none;
  margin-bottom: 12px;
  padding: 11px 13px;
  border-radius: 11px;
  font-size: 12px;
  line-height: 1.45;
}

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

.form-feedback.is-error {
  border: 1px solid rgba(183, 45, 45, 0.2);
  background: #fff0f0;
  color: #a82f2f;
}

.form-feedback.is-success {
  border: 1px solid rgba(44, 127, 63, 0.2);
  background: #eef8f0;
  color: #276d36;
}

button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none !important;
}
.consultoria-float{
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}