:root {
  --navy: #0d2d43;
  --navy-2: #173f58;
  --ink: #18303e;
  --muted: #5e6e76;
  --gold: #d7b56d;
  --gold-dark: #8f6c2b;
  --burgundy: #7b3045;
  --green: #39715f;
  --mist: #edf3f5;
  --white: #ffffff;
  --line: #d7e0e3;
  --shadow: 0 18px 45px rgba(13, 45, 67, 0.13);
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
}

p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 66px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--white);
  background: rgba(13, 45, 67, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar__inner {
  width: min(1180px, calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  text-decoration: none;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
}

.topbar__cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 17px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 42px));
  display: flex;
  align-items: stretch;
  color: var(--white);
  background: #e9ede4 url("assets/hero-oferta.webp") center center / cover no-repeat;
  overflow: hidden;
}

.hero__shade {
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  background: rgba(8, 34, 52, 0.94);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 72px 0;
}

.hero__content > * {
  max-width: 510px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero__lead {
  max-width: 590px;
  margin-top: 22px;
  color: #eef4f6;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.45;
}

.hero__points {
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.hero__points li {
  position: relative;
  padding: 7px 0 7px 28px;
  color: #f4f7f8;
  font-size: 16px;
  line-height: 1.45;
}

.hero__points li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 0;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, filter 160ms ease;
}

.button:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #f1c96f;
  outline-offset: 3px;
}

.button--gold {
  color: #102d43;
  background: var(--gold);
}

.button--primary {
  color: var(--white);
  background: var(--burgundy);
}

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

.hero__note {
  margin-top: 14px;
  color: #cad8dd;
  font-size: 13px;
}

.trust-band {
  color: var(--white);
  background: var(--green);
}

.trust-band__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

.trust-band__inner span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.section {
  padding: 100px 0;
}

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

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

.section--navy {
  color: var(--white);
  background: var(--navy);
}

.wide,
.split,
.offer__inner,
.footer__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.section-lead {
  margin-top: 24px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
}

.section--navy .section-lead {
  color: #d9e3e7;
}

.section-kicker--light {
  color: var(--gold);
}

.intro {
  text-align: center;
}

.outcomes {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  text-align: left;
}

.outcomes article {
  padding-top: 22px;
  border-top: 3px solid var(--gold);
}

.outcomes__number {
  display: block;
  margin-bottom: 24px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
}

.outcomes h3 {
  margin-bottom: 12px;
}

.outcomes p,
.bonus p,
.principles p {
  color: var(--muted);
  font-size: 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 72px;
}

.product__visual img {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.check-list {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 13px 0;
  padding-left: 31px;
}

.check-list li::before {
  color: var(--green);
}

.text-link {
  color: var(--burgundy);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 50px;
}

.section-heading > p:last-child {
  margin-top: 20px;
  color: var(--muted);
  font-size: 20px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.bonus {
  min-width: 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 25px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.bonus--wide {
  grid-column: 1 / -1;
  width: calc(50% - 12px);
  justify-self: center;
}

.bonus img {
  width: 190px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

.bonus__tag {
  display: block;
  margin-bottom: 10px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.principles {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.principles p {
  padding-top: 22px;
  color: #d9e3e7;
  border-top: 2px solid var(--gold);
}

.principles strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 21px;
}

.split--text {
  align-items: start;
}

.check-list--large {
  margin: 0;
  font-size: 19px;
}

.check-list--large li {
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.offer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 76px;
}

.offer__heading > p:last-child {
  margin-top: 22px;
  color: var(--muted);
  font-size: 20px;
}

.offer__details {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.offer__details .check-list {
  margin-top: 0;
}

.price {
  margin: 26px 0 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.secure-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.faq h2 {
  margin-bottom: 34px;
}

.faq__list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 2px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 32px;
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 400;
  text-align: center;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 760px;
  padding: 0 0 24px;
  color: var(--muted);
}

.final-cta {
  padding: 100px 20px;
  color: var(--white);
  background: var(--burgundy);
  text-align: center;
}

.final-cta > div {
  max-width: 820px;
  margin: 0 auto;
}

.final-cta p:not(.section-kicker) {
  margin: 22px auto 30px;
  color: #f1e6e9;
  font-size: 20px;
}

.footer {
  padding: 50px 0 28px;
  color: #d9e3e7;
  background: #081f2e;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 21px;
}

.footer p {
  margin-top: 8px;
  font-size: 14px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  font-size: 14px;
}

.footer a {
  color: var(--white);
  text-underline-offset: 4px;
}

.footer__legal {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0 !important;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-buy {
  display: none;
}

.legal-page {
  min-height: calc(100vh - 72px);
  padding: 76px 20px 100px;
  background: var(--mist);
}

.legal-page article {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 48px;
  background: var(--white);
  border-top: 5px solid var(--gold);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.legal-page h1 {
  color: var(--navy);
  font-size: 48px;
}

.legal-page h2 {
  margin-top: 38px;
  color: var(--navy);
  font-size: 25px;
}

.legal-page p {
  margin-top: 15px;
  color: var(--muted);
}

.legal-page .legal-date {
  margin: 15px 0 32px;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 700;
}

.legal-page .text-link {
  display: inline-block;
  margin-top: 42px;
}

@media (max-width: 900px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .hero__shade {
    width: 64%;
  }

  .hero__content {
    padding-right: 0;
  }

  .hero__content > * {
    max-width: 52%;
  }

  .split,
  .offer__inner {
    grid-template-columns: 1fr;
  }

  .bonus-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .bonus--wide {
    grid-column: auto;
    width: auto;
  }

  .product__visual img {
    max-width: 520px;
  }

  .offer__inner {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
    font-size: 17px;
    line-height: 1.62;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 22px;
  }

  .topbar__inner {
    width: calc(100% - 28px);
    height: 60px;
  }

  .brand {
    max-width: 210px;
    font-size: 15px;
    line-height: 1.2;
  }

  .brand__mark {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }

  .topbar__cta {
    display: none;
  }

  .hero {
    min-height: 0;
    display: block;
    padding-top: 250px;
    background-image: url("assets/hero-oferta-mobile.webp");
    background-size: cover;
    background-position: center top;
    background-color: #ecefe8;
  }

  .hero__shade {
    inset: 250px 0 0;
    width: 100%;
    background: var(--navy);
  }

  .hero__content {
    width: 100%;
    margin: 0;
    padding: 27px 20px 34px;
  }

  .hero__content > * {
    max-width: none;
  }

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

  .hero__lead {
    margin-top: 14px;
    font-size: 20px;
  }

  .hero__points {
    margin: 17px 0 22px;
  }

  .hero__points li {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 15px;
  }

  .hero .button {
    width: 100%;
  }

  .hero__content > .button,
  .hero__note {
    display: none;
  }

  .trust-band__inner {
    width: calc(100% - 40px);
    padding: 20px 0;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  .trust-band__inner span {
    padding-left: 19px;
    border-left: 3px solid var(--gold) !important;
  }

  .section {
    padding: 68px 0;
  }

  .wide,
  .narrow,
  .split,
  .offer__inner,
  .footer__inner {
    width: calc(100% - 36px);
  }

  .section-lead,
  .section-heading > p:last-child,
  .offer__heading > p:last-child {
    font-size: 18px;
  }

  .outcomes {
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .outcomes__number {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .split {
    gap: 44px;
  }

  .product__visual {
    margin: 0 -5px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .bonus-grid {
    gap: 16px;
  }

  .bonus {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 15px;
    padding: 13px;
  }

  .bonus img {
    width: 116px;
  }

  .bonus h3 {
    font-size: 18px;
  }

  .bonus p {
    font-size: 14px;
    line-height: 1.5;
  }

  .bonus__tag {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .principles {
    margin-top: 34px;
    gap: 25px;
  }

  .check-list--large {
    font-size: 17px;
  }

  .offer__inner {
    gap: 34px;
  }

  .offer__details {
    padding: 24px 20px;
  }

  summary {
    min-height: 64px;
    font-size: 18px;
    line-height: 1.35;
  }

  .final-cta {
    padding: 70px 20px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer {
    padding-top: 42px;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer nav {
    flex-direction: column;
    gap: 14px;
  }

  .legal-page {
    padding: 40px 14px 70px;
  }

  .legal-page article {
    padding: 30px 20px;
  }

  .legal-page h1 {
    font-size: 36px;
  }

  .mobile-buy {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    color: var(--white);
    background: rgba(8, 31, 46, 0.98);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
  }

  .mobile-buy span {
    min-width: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
  }

  .mobile-buy .button {
    min-height: 50px;
    padding: 10px 17px;
    font-size: 14px;
    box-shadow: none;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 30px;
  }

  .hero {
    padding-top: 230px;
  }

  .hero__shade {
    inset: 230px 0 0;
  }

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

  .bonus {
    grid-template-columns: 1fr;
  }

  .bonus img {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .mobile-buy {
    grid-template-columns: 1fr;
  }

  .mobile-buy span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
