:root {
  --navy: #062a57;
  --navy-2: #0a3d7a;
  --orange: #ff4b12;
  --orange-2: #f36d21;
  --green: #168a44;
  --ink: #10213d;
  --muted: #5b6680;
  --line: #dce4ef;
  --soft: #f5f8fc;
  --warm: #fff7e8;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(8, 30, 60, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img,
.site-footer img {
  width: 210px;
  height: auto;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--orange);
}

.header-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(255, 75, 18, 0.22);
}

.section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  min-height: min(760px, calc(100vh - 74px));
  max-width: 1440px;
  margin: 0 auto;
  padding-top: clamp(46px, 6vw, 78px);
  padding-bottom: clamp(44px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(238, 245, 252, 0.72) 100%),
    var(--white);
}

main {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 720px, #ffffff 721px);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(18px, 1.55vw, 21px);
}

.hero-actions,
.trust-row,
.hero-proof,
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(255, 75, 18, 0.24);
}

.btn-primary:hover {
  background: #e83f0a;
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.trust-row {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-row span,
.hero-proof span {
  padding-left: 18px;
  position: relative;
}

.trust-row span::before,
.hero-proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.hero-proof {
  max-width: 620px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.hero-meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-meta strong {
  color: var(--orange);
  font-size: 22px;
}

.hero-meta span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-width: 0;
}

.hero-visual {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: clamp(12px, 2vw, 24px);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 246, 253, 0.92));
  border: 1px solid rgba(220, 228, 239, 0.9);
}

.hero-media img {
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: none;
  object-fit: contain;
}

.hero-kit-image {
  width: min(860px, 100%);
  max-height: 430px;
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 10px 24px rgba(8, 30, 60, 0.08);
  overflow: hidden;
}

.hero-benefit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  justify-items: center;
  min-width: 0;
  min-height: 156px;
  padding: 20px 16px 18px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
}

.hero-benefit .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  border-radius: 50%;
  font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 40;
}

.hero-benefit-blue .material-symbols-rounded {
  background: var(--navy-2);
}

.hero-benefit-green .material-symbols-rounded {
  background: var(--green);
}

.hero-benefit-orange .material-symbols-rounded {
  background: var(--orange);
}

.hero-benefit strong {
  display: block;
  color: var(--navy);
  max-width: 210px;
  margin: 0 auto;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.12;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-benefit p {
  max-width: 230px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.35;
  overflow-wrap: break-word;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}

.feature-strip div {
  padding: 26px 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.feature-strip strong,
.feature-strip span {
  display: block;
}

.feature-strip span {
  opacity: 0.78;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.pain-grid,
.include-grid,
.steps-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.pain {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 620px;
  padding-top: clamp(70px, 8vw, 112px);
  padding-bottom: clamp(70px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 42%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.12) 100%),
    url("../img/emprededor-preocupado.png") center right / cover no-repeat;
}

.pain::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(246, 249, 253, 0.92));
}

.pain .section-heading {
  max-width: 780px;
}

.pain .section-heading h2 {
  max-width: 820px;
  font-size: clamp(34px, 4.8vw, 64px);
}

.pain-grid {
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  max-width: 1160px;
  margin-top: 42px;
}

.pain-grid article,
.include-grid article,
.steps-grid article,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pain-grid article {
  display: grid;
  align-content: start;
  min-height: 242px;
  padding: 24px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(192, 207, 225, 0.86);
  box-shadow: 0 12px 34px rgba(8, 30, 60, 0.08);
  backdrop-filter: blur(6px);
}

.icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border: 2px solid rgba(6, 42, 87, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 34px;
  box-shadow: 0 10px 20px rgba(6, 42, 87, 0.14);
  font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 40;
}

.pain-grid article:nth-child(2) .icon,
.pain-grid article:nth-child(4) .icon {
  background: var(--orange);
}

.pain-grid article:nth-child(3) .icon {
  background: var(--navy-2);
}

.pain-grid h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.22;
}

.includes {
  background: var(--soft);
}

.include-grid {
  grid-template-columns: repeat(4, 1fr);
}

.include-grid article {
  padding: 26px;
  box-shadow: 0 10px 28px rgba(8, 30, 60, 0.06);
}

.include-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.include-grid p {
  color: var(--muted);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.fit-list,
.notice {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
}

.fit-list {
  background: var(--soft);
}

.notice {
  background: var(--warm);
  border: 1px solid #ffe0ad;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin: 9px 0;
}

.pricing {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(210px, 330px) minmax(250px, 0.8fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(238, 247, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.08) 100%),
    url("../img/emprededor-feliz.png") center right / cover no-repeat;
  overflow: hidden;
}

.pricing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(6, 42, 87, 0.08));
}

.pricing-copy {
  max-width: 440px;
}

.pricing-copy h2 {
  margin-bottom: 14px;
}

.pricing-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.price-box {
  padding: 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 228, 239, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.old-price {
  display: block;
  color: var(--muted);
  font-size: 24px;
  font-weight: 800;
  text-decoration: line-through;
}

.price-box strong {
  display: block;
  color: var(--orange);
  font-size: clamp(58px, 8vw, 86px);
  line-height: 1;
}

.pricing-list {
  display: grid;
  gap: 18px;
  justify-items: start;
  max-width: 320px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 228, 239, 0.9);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(8, 30, 60, 0.08);
}

.pricing-list ul {
  color: var(--navy);
  font-weight: 800;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 60px);
  background: var(--navy);
  color: var(--white);
}

.form-section h2,
.form-section .eyebrow {
  color: var(--white);
}

.form-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.secure-note {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}

.lead-form {
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label,
legend {
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 11px 12px;
  border: 1px solid #cbd6e3;
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

input:focus,
select:focus {
  outline: 3px solid rgba(255, 75, 18, 0.18);
  border-color: var(--orange);
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

fieldset label,
.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 600;
}

input[type="radio"],
input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
}

.consent {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.form-submit {
  width: 100%;
  margin-top: 22px;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.error {
  color: #b42318;
}

.payment-panel {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #bfe2c9;
  border-radius: 8px;
  background: #effaf2;
}

.payment-panel[hidden] {
  display: none;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.steps-grid article {
  padding: 24px;
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.faq {
  background: var(--soft);
}

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

.faq details {
  padding: 18px 20px;
}

.faq summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 38px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0a376d);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: grid;
  gap: 14px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.footer-logo img {
  width: 220px;
  height: auto;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .form-section,
  .fit,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    max-width: none;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  }

  .pricing {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(238, 247, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(255, 255, 255, 0.78) 100%),
      url("../img/emprededor-feliz.png") center right / cover no-repeat;
  }

  .pricing-copy,
  .pricing-list {
    max-width: 520px;
  }

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

  .hero-visual {
    padding: 14px;
  }

  .hero-kit-image {
    max-height: none;
  }

  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-benefit {
    min-height: 142px;
    padding: 18px 12px 16px;
  }

  .feature-strip,
  .include-grid,
  .steps-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(255, 255, 255, 0.82) 100%),
      url("../img/emprededor-preocupado.png") center right / cover no-repeat;
  }

  .pain .section-heading h2 {
    max-width: 720px;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
  }

  .brand img {
    width: 168px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 13px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-actions .btn,
  .pricing-list .btn {
    width: 100%;
  }

  .pricing {
    background:
      linear-gradient(180deg, rgba(238, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%),
      url("../img/emprededor-feliz.png") 62% center / cover no-repeat;
  }

  .price-box,
  .pricing-list {
    width: 100%;
    max-width: none;
  }

  .hero-proof,
  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-meta span {
    padding-left: 0;
    border-left: 0;
  }

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

  .hero-benefit {
    grid-template-columns: 52px 1fr;
    justify-items: start;
    align-items: center;
    min-height: auto;
    padding: 16px;
    text-align: left;
  }

  .hero-benefit strong,
  .hero-benefit p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .feature-strip,
  .include-grid,
  .steps-grid,
  .faq-grid,
  .pain-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    padding: 0;
  }

  .pain {
    padding-top: 58px;
    padding-bottom: 58px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 100%),
      url("../img/emprededor-preocupado.png") 68% center / cover no-repeat;
  }

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

  .pain-grid article {
    grid-template-columns: 58px 1fr;
    align-items: center;
    align-content: center;
    min-height: auto;
    padding: 18px;
    text-align: left;
  }

  .pain-grid .icon {
    width: 52px;
    height: 52px;
    margin: 0;
    font-size: 30px;
  }

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

  .footer-logo {
    max-width: 100%;
  }

  .footer-logo img {
    width: min(220px, 72vw);
  }

  .site-footer .btn {
    width: 100%;
  }
}
