:root {
  --bg: #f6f4ef;
  --bg-soft: #f8f7f3;
  --white: #ffffff;
  --text: #141414;
  --text-soft: #5f6368;
  --text-light: #8b9097;
  --line: #e4e3df;
  --gold: #c78c2f;
  --gold-dark: #a8741f;
  --navy: #031a34;
  --navy-2: #072547;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.07);
  --shadow-card: 0 18px 35px rgba(0, 0, 0, 0.06);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1140px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 90px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.container {
  width: min(100% - 36px, var(--container));
  margin: 0 auto;
}

/* HEADER */

.header {
  position: fixed;
  inset: 14px 0 auto 0;
  z-index: 50;
}

.header-shell {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(20,20,20,0.05);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  border-radius: 999px;
  min-height: 58px;
  padding: 10px 12px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header.scrolled .header-shell {
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #2c2c2c;
}

.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0b2d56;
  box-shadow: 0 0 0 4px rgba(11,45,86,0.08);
}

.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  transition: 0.25s ease;
}

.header-cta:hover {
  opacity: 0.9;
}

/* UTILS */

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.95);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #72767d;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}

.pill-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.72);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-dark {
  background: #111318;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.btn-dark:hover,
.btn-gold:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, #d69939 0%, #be7f20 100%);
  color: #121212;
  box-shadow: 0 16px 30px rgba(199,140,47,0.24);
}

/* HERO */

.hero {
  padding: 110px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 48px;
  min-height: 680px;
}

.hero-content h1 {
  margin-top: 18px;
  max-width: 640px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: #1d1f23;
}

.hero-description {
  margin-top: 18px;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.65;
  color: #737880;
  font-weight: 500;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-security {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #7e8288;
  font-size: 12px;
  font-weight: 600;
}

.hero-security span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-security svg {
  color: var(--gold);
}

.hero-proof {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-group {
  display: flex;
}

.avatar-group img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--bg);
  filter: grayscale(1);
}

.avatar-group img + img {
  margin-left: -8px;
}

.proof-text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
}

.stars {
  color: #c78c2f;
  letter-spacing: 1px;
  font-size: 13px;
}

.proof-text strong {
  font-size: 14px;
  font-weight: 800;
  color: #171717;
}

.proof-text span {
  color: #72767d;
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 28px 60px rgba(0,0,0,0.16);
}

.hero-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(255,255,255,0.92);
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
}

.hero-card-badge small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: lowercase;
  color: #333;
}

.hero-card-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e1aa4e 0%, #bf8126 100%);
  color: #111;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

/* SECTIONS */

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading h2 {
  margin-top: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: #181a1d;
}

.section-heading p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.72;
  color: #737880;
  font-weight: 500;
}

.included-section {
  padding: 88px 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid #e5e3de;
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #ece8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #171717;
}

.info-card h3 {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #17191d;
}

.info-card p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: #747980;
  font-weight: 500;
}

/* AUTHORITY */

.authority-section {
  padding: 96px 0;
}

.authority-box {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 70px 40px;
  text-align: center;
}

.authority-box h2 {
  max-width: 760px;
  margin: 22px auto 0;
  color: #f6f8fb;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.authority-box h2 em {
  color: #d19433;
  font-style: normal;
}

.authority-box p {
  max-width: 700px;
  margin: 20px auto 0;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.authority-line {
  max-width: 520px;
  height: 1px;
  margin: 34px auto 0;
  background: rgba(255,255,255,0.14);
}

.authority-stats {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  min-width: 120px;
  text-align: center;
}

.stat-item strong {
  display: block;
  color: #d19433;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.stat-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* STEPS */

.steps-section {
  padding: 90px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  background: rgba(255,255,255,0.76);
  border: 1px solid #e4e2dd;
  border-radius: 24px;
  padding: 28px;
  min-height: 220px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 56px;
  line-height: 1;
  font-weight: 300;
  color: #b5b8bc;
  letter-spacing: -0.06em;
}

.step-card h3 {
  margin-top: 22px;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #191b1f;
  max-width: 280px;
}

.step-card p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #747980;
  font-weight: 500;
  max-width: 320px;
}

/* PRICING */

.pricing-section {
  padding: 92px 0 50px;
}

.pricing-container {
  max-width: 760px;
  text-align: center;
}

.pricing-title {
  margin-top: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: #1a1c20;
}

.pricing-description {
  max-width: 620px;
  margin: 16px auto 0;
  color: #767b82;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 500;
}

.price-card {
  width: 100%;
  max-width: 380px;
  margin: 28px auto 0;
  padding: 24px 22px;
  border: 1px solid #cfc8bd;
  border-radius: 16px;
  background: #f8f5ef;
}

.price-card small {
  display: block;
  color: #7d7a73;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.price-row {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price-row strong {
  font-size: clamp(42px, 6vw, 62px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.06em;
  color: #121212;
}

.price-row span {
  font-size: 18px;
  color: #8e8a82;
  text-decoration: line-through;
  font-weight: 600;
}

.price-card p {
  margin-top: 8px;
  color: #726f68;
  font-size: 14px;
  font-weight: 500;
}

.pricing-section .btn {
  margin-top: 18px;
}

.trust-items {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: #8a8f96;
  font-size: 11px;
  font-weight: 600;
}

.trust-items span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-items svg {
  color: var(--gold);
}

.limited {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #85817a;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d62828;
}

/* FOOTER */

.footer {
  padding: 40px 0 120px;
}

.footer-inner {
  text-align: center;
  color: #737880;
}

.footer-inner p {
  font-size: 14px;
  font-weight: 500;
}

.footer-inner nav {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-inner nav a {
  font-size: 14px;
  font-weight: 500;
}

/* STICKY CTA */

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 60;
}

.sticky-cta a {
  max-width: 1140px;
  margin: 0 auto;
  min-height: 62px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 999px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #101114;
  font-size: 16px;
  font-weight: 800;
}

/* FORM PAGE */

.form-page {
  min-height: 100vh;
  background: #eee7dc;
  padding: 0;
}

.form-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.form-card {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 690px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at center bottom, #f7f3eb 0%, #f4eee5 42%, #e6dbcb 100%);
  padding: 38px 38px 34px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.form-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -115px;
  transform: translateX(-50%);
  width: 520px;
  height: 260px;
  border-radius: 50%;
  background: #f8f3eb;
  z-index: 0;
}

.form-card > * {
  position: relative;
  z-index: 1;
}

.form-top-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.form-top-icon .line {
  width: 92px;
  height: 2px;
  background: #c4a987;
}

.user-icon {
  width: 74px;
  height: 74px;
  border: 2px solid #c4a987;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b89d7c;
}

.user-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.5;
}

.form-card h1 {
  margin-top: 24px;
  text-align: center;
  color: #111;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.analysis-form {
  margin-top: 24px;
  display: grid;
  gap: 13px;
}

.analysis-form input {
  width: 100%;
  height: 42px;
  border: none;
  outline: none;
  border-radius: 6px;
  background: #fff;
  padding: 0 16px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.analysis-form input::placeholder {
  color: #7d7d7d;
  opacity: 1;
}

.form-info-box {
  margin-top: 18px;
  background: #003f91;
  border-radius: 8px;
  padding: 22px 18px;
  color: #fff;
  text-align: center;
}

.form-info-box p {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 800;
}

.form-info-box p + p {
  margin-top: 20px;
}

.form-submit {
  margin-top: 6px;
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.form-submit:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.whatsapp-note {
  margin-top: 34px;
  text-align: center;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

/* RESPONSIVO */

@media (max-width: 1100px) {
  .hero-grid,
  .included-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .hero-card {
    max-width: 420px;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 84px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-shell {
    min-height: 54px;
    padding: 8px 10px 8px 12px;
  }

  .hero {
    padding: 96px 0 56px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: 48px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    max-width: 100%;
  }

  .hero-card img {
    height: 460px;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .authority-box {
    padding: 54px 22px;
  }

  .authority-stats {
    gap: 28px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 110px;
  }
}

@media (max-width: 520px) {
  .logo {
    font-size: 12px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 10px;
  }

  .pill {
    font-size: 9px;
    min-height: 32px;
    padding: 0 14px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .section-heading h2,
  .pricing-title {
    font-size: 34px;
  }

  .info-card h3 {
    font-size: 22px;
  }

  .step-card h3 {
    font-size: 24px;
  }

  .price-row strong {
    font-size: 44px;
  }

  .sticky-cta a {
    font-size: 15px;
    min-height: 58px;
  }

  .form-wrapper {
    align-items: flex-start;
    padding: 0;
  }

  .form-card {
    max-width: 100%;
    min-height: 100vh;
    border-radius: 0;
    padding: 34px 30px;
  }

  .form-top-icon .line {
    width: 70px;
  }

  .form-card h1 {
    font-size: 22px;
  }

  .form-info-box p {
    font-size: 12px;
  }
}

.hidden-field {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}