:root {
  --milk: #ffffff;
  --cream: #ffffff;
  --ink: #2f0410;
  --muted: rgba(47, 4, 16, 0.68);
  --rose: #2f0410;
  --rose-soft: rgba(47, 4, 16, 0.07);
  --dark: #2f0410;
  --line: rgba(47, 4, 16, 0.18);
  --peach: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background: var(--milk);
  color: var(--ink);
  font-family: Montserrat, Arial, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 20px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.nav {
  font-size: 14px;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
}

.mobile-menu {
  display: none;
}

.desktop-nav {
  display: flex;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px max(24px, calc((100vw - 1120px) / 2)) 72px;
  background: var(--dark);
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(47, 4, 16, 0.96), rgba(47, 4, 16, 0.7) 46%, rgba(47, 4, 16, 0.16)),
    linear-gradient(0deg, rgba(47, 4, 16, 0.82), transparent 48%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  color: var(--cream);
}

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

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

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

h1,
h2 {
  margin-bottom: 0;
  font-weight: 800;
  line-height: 1.04;
}

h1 {
  max-width: 920px;
  font-size: clamp(44px, 7.2vw, 92px);
}

h2 {
  font-size: clamp(34px, 5.2vw, 72px);
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.12;
}

.lead {
  width: min(720px, 100%);
  margin: 28px 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(22px, 2.35vw, 32px);
  font-weight: 800;
}

.sublead {
  width: min(760px, 100%);
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.75vw, 23px);
  font-weight: 650;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: var(--cream);
  color: var(--dark);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.14), 0 16px 34px rgba(47, 4, 16, 0.36);
  font-weight: 900;
}

.button:hover {
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2), 0 18px 38px rgba(47, 4, 16, 0.42);
}

.button.dark {
  width: 100%;
  background: var(--dark);
  color: var(--cream);
  box-shadow: none;
}

section:not(.hero) {
  padding: 104px max(24px, calc((100vw - 1120px) / 2));
  scroll-margin-top: 96px;
}

.decision,
.path,
.join {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 64px;
  align-items: start;
}

.decision {
  background: var(--cream);
}

.decision-copy {
  display: grid;
  gap: 18px;
}

.decision-intro {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 700;
  line-height: 1.5;
}

.decision blockquote {
  margin: 0;
  padding: 22px 24px;
  border-left: 5px solid var(--rose);
  background: var(--rose-soft);
  color: var(--ink);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.12;
}

.decision-list {
  display: grid;
  gap: 12px;
}

.decision-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 750;
}

.decision-note {
  margin: 10px 0 0;
  padding: 22px 24px;
  border-radius: 8px;
  background: var(--dark);
  color: var(--cream);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 900;
  line-height: 1.35;
}

.outcomes {
  background: var(--rose-soft);
}

.outcomes h2 {
  width: min(980px, 100%);
}

.outcomes-copy {
  display: grid;
  gap: 18px;
  width: min(920px, 100%);
  margin-top: 34px;
}

.outcomes-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 650;
  line-height: 1.48;
}

.outcomes-copy .strong-line {
  color: var(--ink);
  font-weight: 900;
}

.inside-list {
  display: grid;
  gap: 12px;
  margin: 8px 0 10px;
}

.inside-list p {
  position: relative;
  padding: 18px 22px 18px 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
}

.inside-list p::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 27px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--rose);
}

.outcomes-copy .outcomes-note {
  margin-top: 8px;
  padding: 24px;
  border-radius: 8px;
  background: var(--dark);
  color: var(--cream);
  font-weight: 900;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.outcome-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.outcome-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--rose);
  font-weight: 900;
}

.outcome-grid p,
.path-card p,
.join p,
.footer {
  color: var(--muted);
}

.path {
  background: var(--cream);
}

.path-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--rose-soft);
}

.count {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: clamp(50px, 6vw, 88px);
  font-weight: 900;
  line-height: 1;
}

.path-card p {
  font-size: clamp(18px, 1.6vw, 22px);
}

.path-card .path-note {
  color: var(--ink);
  font-weight: 900;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.topic-tags span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--rose);
  font-size: 15px;
  font-weight: 900;
}

.accordion-section {
  background: var(--cream);
}

.accordion-section h2 {
  width: min(900px, 100%);
  margin-bottom: 42px;
}

.accordion-list {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border-radius: 18px;
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
}

.accordion-item summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 22px 30px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: "+";
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  color: var(--dark);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.accordion-item[open] summary::after {
  content: "×";
}

.accordion-content {
  padding: 0 30px 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 650;
}

.accordion-content p {
  max-width: 960px;
  margin: 0 0 18px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

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

.accordion-content li {
  position: relative;
  padding-left: 22px;
}

.accordion-content li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--peach);
}

.accordion-accent {
  color: var(--cream);
  font-weight: 900;
}

.about-founder {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 64px;
  background: var(--cream);
}

.founder-intro {
  display: grid;
  align-content: start;
  gap: 28px;
}

.founder-photo {
  margin: 8px 0 0;
  overflow: hidden;
  border: 10px solid var(--dark);
  border-radius: 8px;
  background: var(--dark);
  box-shadow: 0 22px 52px rgba(47, 4, 16, 0.18);
}

.founder-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 39% 50%;
}

.founder-text {
  display: grid;
  gap: 16px;
}

.founder-text p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 750;
}

.founder-text .founder-accent {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--rose);
  color: var(--cream);
  font-weight: 900;
}

.join {
  align-items: center;
  background: var(--dark);
  color: var(--cream);
}

.join p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 21px;
}

.join-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
}

.join-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.price {
  color: var(--ink) !important;
  font-size: 64px !important;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 16px;
}

.old-price {
  margin-top: -8px !important;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--rose-soft);
  color: var(--rose) !important;
  font-size: 16px;
  font-weight: 900;
}

.promo-form {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--rose-soft);
}

.promo-form label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.promo-row input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(47, 4, 16, 0.24);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  outline: none;
}

.promo-row input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(47, 4, 16, 0.12);
}

.promo-row button {
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.promo-status {
  margin: 0 !important;
  color: var(--muted);
  font-size: 15px !important;
  font-weight: 750;
  line-height: 1.35;
}

.promo-status.is-valid {
  color: #116033;
}

.promo-status.is-error {
  color: #8a1230;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px max(24px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

@media (min-width: 861px) and (max-width: 1100px) {
  .decision,
  .path,
  .about-founder,
  .join {
    gap: 40px;
  }

  .join-card,
  .path-card {
    padding: 28px;
  }

  .price {
    font-size: 56px !important;
  }
}

@media (max-width: 860px) {
  .mobile-menu > .nav {
    gap: 14px;
    font-size: 13px;
  }

  .site-header {
    top: 12px;
    gap: 16px;
  }

  .hero {
    min-height: 94svh;
    padding-top: 112px;
    padding-bottom: 50px;
  }

  .hero-image::after {
    background:
      linear-gradient(90deg, rgba(47, 4, 16, 0.94), rgba(47, 4, 16, 0.52)),
      linear-gradient(0deg, rgba(47, 4, 16, 0.78), transparent 58%);
  }

  .hero-image img {
    object-position: center bottom;
  }

  section:not(.hero) {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .decision,
  .path,
  .about-founder,
  .join {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .founder-intro {
    gap: 22px;
  }

  .founder-photo {
    width: min(520px, 100%);
    margin-top: 0;
  }

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

  .outcome-grid article {
    min-height: auto;
  }

  .outcome-grid span {
    margin-bottom: 28px;
  }
}

@media (max-width: 680px) {
  .site-header {
    z-index: 100;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(47, 4, 16, 0.16);
    border-radius: 50%;
    color: var(--dark);
    background: #fff;
    cursor: pointer;
    list-style: none;
  }

  .menu-toggle::-webkit-details-marker {
    display: none;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle:focus {
    outline: none;
  }

  .menu-toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(47, 4, 16, 0.18);
  }

  .mobile-menu[open] .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu[open] .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu[open] .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu > .mobile-nav {
    grid-template-columns: 1fr;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(47, 4, 16, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(47, 4, 16, 0.2);
    display: none;
  }

  .mobile-menu[open] > .mobile-nav {
    display: grid;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 46px;
    padding: 10px 16px;
    border: 1px solid rgba(47, 4, 16, 0.14);
    border-radius: 999px;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
  }

  .nav a:last-child {
    color: #fff;
    background: var(--dark);
  }
}

@media (max-width: 520px) {
  body {
    background: var(--cream);
  }

  .site-header {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    top: max(12px, env(safe-area-inset-top));
    padding: 12px 14px;
    border-radius: 12px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: clamp(32px, 9.2vw, 40px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.12;
  }

  h3 {
    font-size: 22px;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 76px 0 0;
    background: var(--dark);
  }

  .hero-image {
    position: relative;
    height: min(48svh, 420px);
    inset: auto;
    background: var(--dark);
  }

  .hero-image::after {
    background:
      linear-gradient(0deg, rgba(47, 4, 16, 0.92) 0%, rgba(47, 4, 16, 0.28) 40%, transparent 74%),
      linear-gradient(90deg, rgba(47, 4, 16, 0.2), rgba(47, 4, 16, 0.2));
  }

  .hero-image img {
    object-fit: contain;
    object-position: center center;
  }

  .hero-copy {
    width: 100%;
    padding: 28px 20px calc(44px + env(safe-area-inset-bottom));
  }

  .lead {
    margin-top: 22px;
    font-size: clamp(20px, 5.6vw, 23px);
  }

  .sublead,
  .join p {
    font-size: clamp(17px, 4.7vw, 19px);
  }

  .button {
    width: 100%;
    min-width: 0;
    padding-inline: 20px;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
  }

  section:not(.hero) {
    padding: 64px 20px;
    scroll-margin-top: 80px;
  }

  .decision,
  .path,
  .about-founder,
  .join {
    gap: 28px;
  }

  .decision blockquote,
  .decision-note,
  .outcomes-copy .outcomes-note {
    padding: 20px;
  }

  .decision-list p,
  .founder-text p {
    padding: 16px 0;
  }

  .inside-list p {
    padding: 16px 16px 16px 44px;
  }

  .inside-list p::before {
    left: 18px;
    top: 25px;
  }

  .outcome-grid {
    margin-top: 32px;
  }

  .outcome-grid article {
    padding: 22px;
  }

  .topic-tags {
    gap: 8px;
  }

  .topic-tags span {
    padding: 9px 11px;
    font-size: 14px;
  }

  .accordion-item {
    border-radius: 14px;
  }

  .accordion-item summary {
    min-height: 78px;
    gap: 14px;
    padding: 18px 16px 18px 20px;
    font-size: clamp(19px, 5.2vw, 22px);
    line-height: 1.25;
  }

  .accordion-item summary::after {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 30px;
  }

  .accordion-content {
    padding: 0 20px 24px;
    font-size: 16px;
  }

  .founder-photo {
    border-width: 6px;
    box-shadow: 0 16px 34px rgba(47, 4, 16, 0.16);
  }

  .founder-photo img {
    aspect-ratio: 1 / 1.18;
    object-position: 36% 48%;
  }

  .join-card,
  .path-card {
    min-width: 0;
    padding: 20px;
  }

  .price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 12px;
    font-size: clamp(44px, 15vw, 58px) !important;
    overflow-wrap: anywhere;
  }

  .price span {
    font-size: 15px;
  }

  .old-price {
    margin-top: 0 !important;
  }

  .promo-form {
    padding: 16px;
  }

  .promo-row {
    grid-template-columns: 1fr;
  }

  .promo-row button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
    overflow-wrap: anywhere;
  }

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

  .thanks-overlay {
    padding:
      calc(24px + env(safe-area-inset-top))
      20px
      calc(24px + env(safe-area-inset-bottom));
  }

  .thanks-avatar {
    width: 112px;
    height: 112px;
  }

  .oferta-modal {
    padding:
      max(12px, env(safe-area-inset-top))
      12px
      max(12px, env(safe-area-inset-bottom));
  }

  .oferta-box {
    max-height: calc(100dvh - 24px);
    border-radius: 12px;
  }

  .oferta-head {
    padding: 14px 16px;
  }

  .oferta-head strong {
    min-width: 0;
    font-size: 16px;
  }

  .oferta-body {
    padding: 4px 16px 22px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .site-header {
    width: calc(100% - 20px);
    padding-inline: 12px;
  }

  .hero-copy,
  section:not(.hero) {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-image {
    height: min(54vh, 430px);
  }

  .join-card,
  .path-card {
    padding: 16px;
  }

  .promo-form {
    padding: 14px;
  }

  .promo-row input,
  .promo-row button {
    padding-left: 12px;
    padding-right: 12px;
  }

  .accordion-item summary {
    padding-left: 16px;
  }

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

@media (max-height: 520px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-copy {
    padding-bottom: 36px;
  }
}

.thanks-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--dark);
  color: var(--cream);
  padding: 32px 24px;
  overflow-y: auto;
}

.thanks-overlay.is-visible {
  display: grid;
  place-items: center;
}

.thanks-card {
  width: min(560px, 100%);
  text-align: center;
}

.thanks-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 22px;
  display: block;
  border-radius: 50%;
}

.thanks-card .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.thanks-card h2 {
  margin-bottom: 18px;
}

.thanks-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 650;
  line-height: 1.5;
}

.thanks-card .button {
  width: 100%;
  margin-bottom: 14px;
}

.thanks-steps {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  text-align: left;
}

.thanks-steps p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  font-size: 16px;
}

.footer a.footer-link {
  text-decoration: underline;
  cursor: pointer;
}

.oferta-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(47, 4, 16, 0.72);
  padding: 24px;
}

.oferta-modal.is-visible {
  display: grid;
  place-items: center;
}

.oferta-box {
  width: min(820px, 100%);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  color: var(--ink);
  border-radius: 14px;
  overflow: hidden;
}

.oferta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.oferta-head strong {
  font-size: 18px;
}

.oferta-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.oferta-body {
  padding: 8px 24px 28px;
  overflow-y: auto;
}

.oferta-body h4 {
  margin: 22px 0 8px;
  font-size: 16px;
  font-weight: 800;
}

.oferta-body p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.oferta-body ul {
  margin: 0 0 12px;
  padding-left: 22px;
}

.oferta-body li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
}
