:root {
  --purple: #170020;
  --purple-2: #230532;
  --ink: #180326;
  --gold: #c99125;
  --gold-2: #f4b638;
  --paper: #fffaf0;
  --white: #ffffff;
  --muted: #6a6070;
  --line: rgba(201, 145, 37, 0.35);
  --shadow: 0 24px 60px rgba(23, 0, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(20px, 7vw, 120px);
  color: var(--white);
  background: var(--purple);
  border-bottom: 2px solid var(--gold);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--gold-2);
  font-family: "Playfair Display", serif;
  font-size: 25px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand small {
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  opacity: 0.9;
}

.main-nav a:hover {
  color: var(--gold-2);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 45px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.btn.primary {
  color: #16031f;
  background: var(--gold-2);
  border-color: var(--gold);
}

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

.btn.outline {
  color: var(--gold-2);
  background: transparent;
  border-color: var(--gold);
}

.btn.small {
  margin-top: 18px;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(36px, 5vw, 78px);
  align-items: center;
  min-height: 650px;
  padding: clamp(46px, 8vw, 90px) clamp(20px, 7vw, 120px);
  color: var(--paper);
  background:
    radial-gradient(circle at 70% 20%, rgba(244, 182, 56, 0.17), transparent 34%),
    linear-gradient(135deg, #170020 0%, #21002d 55%, #110018 100%);
}

.eyebrow,
.section-heading span {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.simulation-copy h2 {
  margin: 10px 0 14px;
  max-width: 720px;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

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

.hero h1::first-line {
  color: var(--gold-2);
}

.hero-lead {
  max-width: 560px;
  color: #f5ecd8;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

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

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 28px;
  border: 2px solid var(--gold);
  border-radius: 130px 4px 130px 4px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02)),
    #2b1034;
  box-shadow: var(--shadow);
}

.photo-stage {
  position: absolute;
  inset: 80px 34px 86px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}

.team-portrait,
.avatar {
  background:
    linear-gradient(170deg, rgba(255,255,255,0.15), transparent 35%),
    radial-gradient(circle at 50% 22%, #f7d8b4 0 14%, #20202a 15% 21%, transparent 22%),
    linear-gradient(90deg, #17243a, #111827 48%, #2a1d22);
  border: 1px solid rgba(244, 182, 56, 0.55);
  box-shadow: 0 20px 34px rgba(0,0,0,0.32);
}

.team-portrait {
  width: 28%;
  height: 245px;
  border-radius: 90px 90px 14px 14px;
}

.portrait-two {
  height: 290px;
  background:
    radial-gradient(circle at 50% 21%, #eac29d 0 14%, #111827 15% 21%, transparent 22%),
    linear-gradient(90deg, #121826, #1f2937);
}

.portrait-three {
  background:
    radial-gradient(circle at 50% 22%, #d7aa82 0 14%, #111827 15% 21%, transparent 22%),
    linear-gradient(90deg, #111827, #312e81);
}

.hero-badge {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--gold-2);
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  font-size: 15px;
}

.hero-badge span {
  display: block;
  margin-top: 5px;
  color: var(--paper);
  font-size: 11px;
}

.stats-row {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.steps,
.partners,
.team {
  padding: clamp(52px, 8vw, 92px) clamp(20px, 7vw, 120px);
}

.section-heading h2 {
  color: var(--purple);
  font-size: clamp(32px, 4vw, 58px);
}

.section-heading p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-heading.center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-heading.compact h2 {
  max-width: 520px;
}

.steps-list {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin-top: 34px;
}

.steps-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.steps-list b {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--gold-2);
  background: var(--purple);
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.steps-list h3,
.benefits h3,
.team-grid h3 {
  margin: 0 0 6px;
  color: var(--purple);
  font-size: 20px;
}

.steps-list p,
.benefits p,
.team-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 7vw, 120px);
  color: var(--paper);
  background: var(--purple);
}

.why .section-heading h2 {
  color: var(--paper);
}

.why-copy p {
  max-width: 600px;
  padding: 28px;
  color: var(--white);
  line-height: 1.7;
  background: #233155;
  border-left: 4px solid var(--gold);
}

.achievement-card {
  min-height: 390px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 38px;
  text-align: center;
  border: 2px solid var(--gold);
  border-radius: 100px 4px 100px 4px;
  background:
    linear-gradient(rgba(23, 0, 32, 0.12), rgba(23, 0, 32, 0.85)),
    radial-gradient(circle at 50% 35%, #6f4a23, #1b0b22 58%);
}

.gold-mark {
  color: var(--gold-2);
  font-family: "Playfair Display", serif;
  font-size: 58px;
}

.achievement-card h3 {
  max-width: 280px;
  color: var(--paper);
  font-size: 28px;
  line-height: 1.1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 38px;
}

.team-grid article {
  text-align: center;
}

.avatar {
  width: min(100%, 300px);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 50%;
  background-color: #2b1034;
}

.avatar-two {
  background:
    radial-gradient(circle at 50% 23%, #c98969 0 13%, #211827 14% 21%, transparent 22%),
    linear-gradient(140deg, #421c35, #121826);
}

.avatar-three {
  background:
    radial-gradient(circle at 50% 23%, #caa07d 0 13%, #20202a 14% 21%, transparent 22%),
    linear-gradient(140deg, #111827, #34305c);
}

.partners {
  border-top: 34px solid var(--purple);
  border-bottom: 34px solid var(--purple);
}

.logo-strip {
  display: flex;
  gap: 36px;
  align-items: center;
  margin: 46px auto 34px;
  overflow-x: auto;
  padding: 10px 0 20px;
}

.logo-strip strong {
  flex: 0 0 auto;
  color: #21314f;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 900;
  white-space: nowrap;
}

.logo-strip strong:nth-child(3) {
  padding: 18px 24px;
  color: #f5eb28;
  background: #313094;
  border-radius: 18px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(23, 0, 32, 0.08);
}

.benefits article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid #ece7dd;
}

.benefits article:last-child {
  border-right: 0;
}

.benefits span {
  color: var(--gold);
  font-size: 36px;
}

.simulation {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(58px, 8vw, 100px) clamp(20px, 7vw, 120px);
  color: var(--paper);
  background: var(--purple);
  border-bottom: 2px solid var(--gold);
}

.key {
  display: block;
  margin-bottom: 10px;
  font-size: 44px;
}

.simulation-copy h2 {
  color: var(--paper);
  font-size: clamp(34px, 5vw, 66px);
}

.simulation-copy p {
  max-width: 620px;
  color: #f2e7d0;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid #d8cfbd;
  border-radius: 4px;
  background: #fffdf8;
}

.lead-form textarea {
  resize: vertical;
}

.form-btn {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
  padding: 52px clamp(20px, 7vw, 120px) 24px;
  color: var(--white);
  background: var(--purple);
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  margin-top: 0;
}

.site-footer h3 {
  color: var(--gold-2);
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 11px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
}

.footer-brand {
  align-items: flex-start;
  flex-direction: column;
}

.footer-brand p {
  max-width: 330px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--gold);
}

.footer-bottom span {
  color: var(--gold-2);
  font-size: 13px;
  text-decoration: underline;
}

.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: #19c463;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 42px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--gold-2);
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.menu-open .main-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .site-header.menu-open .main-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .hero,
  .why,
  .simulation,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .hero {
    min-height: unset;
  }

  .hero-card {
    min-height: 360px;
    border-radius: 70px 4px 70px 4px;
  }

  .photo-stage {
    inset: 78px 20px 88px;
  }

  .team-portrait {
    height: 190px;
  }

  .portrait-two {
    height: 230px;
  }

  .team-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .benefits article {
    border-right: 0;
    border-bottom: 1px solid #ece7dd;
  }

  .steps-list article {
    grid-template-columns: 48px 1fr;
  }

  .steps-list b {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .logo-strip {
    gap: 22px;
  }

  .site-footer {
    padding-bottom: 90px;
  }
}
