:root {
  --navy: #13253f;
  --navy-deep: #0c1828;
  --teal: #0d6a6e;
  --teal-deep: #0e4558;
  --copper: #b87345;
  --sand: #f4efe7;
  --sand-deep: #e8ddcf;
  --mist: rgba(255, 255, 255, 0.08);
  --line: rgba(19, 37, 63, 0.12);
  --white: #ffffff;
  --copy-soft: rgba(255, 255, 255, 0.8);
  --body-soft: #5e6d80;
  --shadow: 0 32px 80px rgba(7, 17, 29, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 8%, rgba(13,106,110,.16), transparent 26rem),
    radial-gradient(circle at 90% 12%, rgba(184,115,69,.12), transparent 24rem),
    linear-gradient(180deg, #f7f1e8 0%, #f2eadf 44%, #ece1d4 100%);
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.shell {
  width: min(1160px, calc(100% - 220px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: linear-gradient(180deg, rgba(12,24,40,.84), rgba(12,24,40,.36) 72%, rgba(12,24,40,0));
}

.topbar-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.brand-main {
  width: clamp(176px, 18vw, 220px);
  height: auto;
  flex: 0 0 auto;
}

.brand-partners {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-partners img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: .95;
}

.topbar-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.button:hover,
.topbar-cta:hover { transform: translateY(-1px); }

.topbar-cta,
.button-primary {
  background: linear-gradient(135deg, var(--copper), #c88958 54%, #dda271 100%);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(184,115,69,.28);
}

.button-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #e7dccd;
}

.hero-media,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(92deg, rgba(10,18,31,.9) 0%, rgba(10,18,31,.74) 34%, rgba(10,18,31,.34) 54%, rgba(10,18,31,.08) 100%),
    url("./assets/hero-consulta.jpg") 58% center / cover no-repeat;
}

.hero-noise {
  background:
    radial-gradient(circle at 78% 16%, rgba(184,115,69,.22), transparent 22rem),
    radial-gradient(circle at 18% 84%, rgba(13,106,110,.18), transparent 24rem);
  mix-blend-mode: screen;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 132px 0 84px;
}

.hero-copy {
  max-width: 980px;
  color: var(--white);
  padding-top: clamp(8px, 3vh, 22px);
  text-align: center;
}

.eyebrow,
.section-label,
.claim-kicker {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.eyebrow { color: #b9dcda; }
.section-label { color: var(--teal); }
.claim-kicker { color: var(--teal-deep); }

.hero-logo {
  width: clamp(240px, 22vw, 320px);
  margin: 18px 0 22px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1,
.support h2,
.proof h2,
.closing h2,
.claim-panel h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -.05em;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(56px, 6vw, 90px);
  line-height: .95;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero-lead {
  margin: 20px 0 0;
  max-width: 44ch;
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.64;
  color: var(--copy-soft);
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.hero-lead strong { color: var(--white); }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-fine {
  margin: 18px 0 0;
  max-width: 58ch;
  color: rgba(255,255,255,.66);
  font-size: 15px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

.claim-panel {
  width: min(620px, 100%);
  margin-top: 6px;
  padding: 40px 42px 34px;
  border-radius: 32px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero .claim-panel {
  width: min(620px, 100%);
}

.claim-panel h2 {
  font-size: clamp(42px, 3.8vw, 56px);
  line-height: .94;
  margin-top: 12px;
  max-width: none;
}

.claim-lead {
  margin: 14px 0 0;
  color: var(--body-soft);
  font-size: 18px;
  line-height: 1.66;
  max-width: 34ch;
}

.claim-paid-note {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.65;
  max-width: 42ch;
}

.claim-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.claim-form label {
  display: grid;
  gap: 8px;
}

.claim-form label > span {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--navy);
}

.claim-form input[type="text"],
.claim-form input[type="email"],
.claim-form input[type="tel"] {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(19,37,63,.14);
  background: #fffdfb;
  color: var(--navy);
  font: inherit;
}

.claim-form input:focus {
  outline: none;
  border-color: rgba(13,106,110,.5);
  box-shadow: 0 0 0 4px rgba(13,106,110,.08);
}

.checkbox {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  padding: 4px 0 2px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkbox span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.5;
  text-transform: none;
  color: var(--body-soft);
}

.submit-button {
  width: 100%;
  margin-top: 2px;
}

.form-status {
  margin: 0;
  min-height: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--teal-deep);
}

.form-status.is-error { color: #a3422b; }
.form-status.is-success { color: var(--teal-deep); }

.claim-note {
  margin: 14px 0 0;
  color: #69778b;
  font-size: 14px;
  line-height: 1.65;
  max-width: 42ch;
}

.support,
.proof,
.closing {
  padding: 76px 0;
}

.support-grid,
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 42px;
  align-items: start;
}

.support-copy h2,
.proof-copy h2,
.closing h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: .95;
  margin-top: 10px;
}

.support-list {
  display: grid;
  gap: 18px;
  padding-top: 4px;
}

.support-list article {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(19,37,63,.1);
}

.support-list article:last-child { border-bottom: none; padding-bottom: 0; }

.support-list strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 6px;
}

.support-list span,
.proof-copy p,
.closing p {
  color: var(--body-soft);
  font-size: 18px;
  line-height: 1.64;
}

.proof {
  background: linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,.1));
}

.proof-media video {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0a1220;
}

.proof-text-block {
  display: flex;
  align-items: stretch;
}

.proof-card {
  width: 100%;
  min-height: 100%;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(150deg, #102038 0%, #13253f 54%, #0e4558 100%);
  box-shadow: var(--shadow);
  color: var(--white);
}

.proof-card .section-label {
  color: #b8d7d8;
}

.proof-card h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: .96;
  margin-top: 10px;
}

.proof-card p:last-child {
  margin: 14px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.66;
}

.proof-copy {
  padding-top: 8px;
}

.proof-copy p {
  margin: 16px 0 0;
  max-width: 34ch;
}

.proof-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.proof-list li {
  position: relative;
  padding-left: 18px;
  color: var(--body-soft);
  font-size: 16px;
  line-height: 1.58;
}

.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--copper));
}

.proof-copy .button {
  margin-top: 22px;
}

.closing-inner {
  position: relative;
  overflow: hidden;
  padding: 34px 34px 36px;
  border-radius: 32px;
  background: linear-gradient(150deg, #0d1a2d 0%, #13253f 48%, #0e4558 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.closing-inner::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184,115,69,.3), rgba(184,115,69,0));
}

.closing .section-label { color: #b8d7d8; position: relative; z-index: 1; }
.closing h2,
.closing p,
.closing .button { position: relative; z-index: 1; }

.closing p {
  max-width: 46ch;
  margin: 14px 0 0;
  color: rgba(255,255,255,.82);
}

.closing .button {
  margin-top: 22px;
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 45;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper), #d39563 100%);
  box-shadow: 0 18px 42px rgba(184,115,69,.32);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

@media (max-width: 1080px) {
  .hero-grid,
  .support-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 28px; }
  .claim-panel { width: 100%; }
}

@media (min-width: 1024px) {
  .hero-grid {
    gap: 46px;
    padding-top: 126px;
    padding-bottom: 88px;
  }

  .hero-copy {
    max-width: 1120px;
  }

  .hero h1 {
    max-width: 10.8ch;
    font-size: clamp(58px, 5.5vw, 96px);
    line-height: .96;
  }

  .hero-lead {
    max-width: 56ch;
    font-size: 24px;
    line-height: 1.62;
  }

  .hero-points {
    gap: 14px;
    margin-top: 30px;
  }

  .hero-actions {
    gap: 16px;
    margin-top: 32px;
  }

  .hero-fine {
    max-width: 72ch;
    font-size: 15px;
  }

  .hero .claim-panel {
    width: min(760px, 100%);
    padding: 42px 48px 36px;
  }

  .claim-panel h2 {
    font-size: clamp(46px, 3.4vw, 62px);
    line-height: .94;
  }

  .claim-lead {
    max-width: 44ch;
    font-size: 19px;
  }

  .claim-paid-note,
  .claim-note {
    max-width: 56ch;
  }
}

@media (max-width: 1280px) {
  .shell { width: min(1180px, calc(100% - 120px)); }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 680px); }
  .topbar-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: center;
  }
  .brand-row {
    gap: 12px;
    align-items: center;
  }
  .brand-partners img { height: 20px; }
  .topbar-cta { display: none; }
  .hero-grid { padding: 100px 0 26px; }
  .hero-copy { padding-top: 28px; }
  .hero-logo { width: min(220px, 58vw); }
  .hero h1 { max-width: 8.5ch; font-size: clamp(40px, 12vw, 58px); }
  .claim-panel,
  .hero .claim-panel { width: 100%; margin-top: 10px; }
  .hero-points span { font-size: 13px; min-height: 36px; }
  .claim-panel,
  .closing-inner,
  .proof-card { padding: 22px; border-radius: 24px; }
  .support,
  .proof,
  .closing { padding: 54px 0; }
  .support-copy h2,
  .proof-copy h2,
  .closing h2,
  .claim-panel h2 { letter-spacing: -.04em; }
  .mobile-cta { display: inline-flex; }
  body { padding-bottom: 82px; }
}
