@import url('https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:wght@400;500;600;700;800&display=swap');

/* ─── Design Tokens ─── */
:root {
  --font-display: 'Anton', sans-serif;
  --font-body: 'Barlow Condensed', sans-serif;
  --color-text: #121212;
  --color-cream: #fbf6f2;
  --color-red: #bb352e;
  --color-red-mid: #a02720;
  --color-red-dark: #8c1d17;
  --color-gold: #ddb15c;
  --container-gutter-lg: 128px;
  --container-gutter-md: 48px;
  --container-gutter-sm: 32px;
}

/* ─── Reset / Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-page {
  background: var(--color-cream);
  min-width: 320px;
  color: var(--color-text);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  overflow-x: clip;
  line-height: 1.5;
}

body.landing-page::-webkit-scrollbar {
  width: 12px;
}

body.landing-page::-webkit-scrollbar-thumb {
  background: #0000002e;
  border-radius: 999px;
}

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

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

button,
a,
input,
textarea,
select {
  font: inherit;
}

.page {
  background: var(--color-cream);
  overflow-x: clip;
}

.section {
  position: relative;
}

.l-container {
  width: min(1680px, calc(100% - var(--container-gutter-lg)));
  margin: 0 auto;
}

@media (width <=1279px) {
  .l-container {
    width: min(1680px, calc(100% - var(--container-gutter-md)));
  }
}

@media (width <=767px) {
  .l-container {
    width: min(1680px, calc(100% - var(--container-gutter-sm)));
  }
}

/* ─── Buttons ─── */
.btn-primary {
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(var(--color-red) 0%, var(--color-red-mid) 60%, var(--color-red-dark) 100%);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  min-height: 74px;
  padding: 0 42px;
  font-size: clamp(1.05rem, 1vw, 1.25rem);
  font-weight: 800;
  line-height: 1;
  transition: transform .18s, box-shadow .18s;
  display: inline-flex;
  box-shadow: 0 18px 32px #aa292247, inset 0 1px #ffffff2e;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px #aa292252, inset 0 1px #ffffff2e;
}

.btn-download {
  color: #fff;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: linear-gradient(var(--color-red) 0%, var(--color-red-mid) 60%, var(--color-red-dark) 100%);
  border-radius: 999px;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 28px 0 18px;
  font-size: 1rem;
  font-weight: 800;
  transition: transform .18s, box-shadow .18s;
  display: inline-flex;
  box-shadow: 0 16px 28px #aa292240, inset 0 1px #ffffff29;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px #aa292252, inset 0 1px #ffffff29;
}

.btn-download .icon-wrap {
  color: #fff;
  border: 1px solid #ffffffbf;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: inline-flex;
}

.btn-download .icon-wrap svg {
  width: 18px;
  height: 18px;
}

@media (width <=767px) {
  .btn-primary {
    width: 100%;
    max-width: min(100%, 400px);
    min-height: 66px;
    padding: 16px 28px;
  }

  .btn-download {
    justify-content: center;
    width: 100%;
    min-height: max(48px, 3.25rem);
    padding: 12px 22px 12px 16px;
  }

  .btn-download .icon-wrap {
    width: 32px;
    height: 32px;
  }
}

/* ═══════════════════════════════════
   HEADER / NAVBAR
   ═══════════════════════════════════ */
.l-header {
  z-index: 20;
  background: #000;
  border-bottom: 1px solid #ffffff14;
  position: sticky;
  top: 0;
}

.l-header-inner {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  display: flex;
  position: relative;
  overflow-x: clip;
}

.l-logo-link {
  flex-shrink: 0;
  display: inline-flex;
}

.l-logo {
  width: clamp(160px, 16vw, 238px);
}

.l-end-group {
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  display: flex;
}

/* Menu Toggle (Hamburger) */
.l-menu-toggle {
  color: #fff;
  cursor: pointer;
  background: 0 0;
  border: none;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  transition: opacity .18s, background-color .18s;
  display: inline-flex;
}

.l-menu-toggle:hover {
  opacity: .85;
}

/* Desktop Nav */
.l-nav {
  z-index: 30;
  background: #000;
  border-top: 1px solid #ffffff14;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 8px 0 20px;
  list-style: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 18px 32px #00000059;
}

.l-nav.is-open {
  display: flex;
}

.l-nav-link {
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .98;
  border-bottom: 1px solid #ffffff14;
  align-items: center;
  min-height: 48px;
  padding: 12px 8px;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1;
  transition: opacity .18s, background-color .18s;
  display: flex;
}

.l-nav-link:last-child {
  border-bottom: none;
}

.l-nav-link:hover {
  opacity: .72;
}

/* Account button svg */
.l-account-btn {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: inline-flex;
  background: none;
  border: none;
  cursor: pointer;
}

.l-account-btn svg {
  width: 100%;
  height: 100%;
}

/* ─── Mobile Side Panel ─── */
.l-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.l-mobile-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.l-side-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: #111;
  z-index: 999;
  flex-direction: column;
  display: flex;
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, .5);
  overflow-y: auto;
}

.l-side-menu.is-open {
  right: 0;
}

.l-side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #ffffff1a;
}

.l-side-menu-header img {
  height: 32px;
  width: auto;
}

.l-side-menu-close {
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 8px;
  transition: background .2s;
}

.l-side-menu-close:hover {
  background: #ffffff14;
}

.l-side-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.l-side-menu-link {
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid #ffffff14;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 700;
  transition: background .2s, opacity .18s;
  display: block;
}

.l-side-menu-link:last-child {
  border-bottom: none;
}

.l-side-menu-link:hover {
  background: #ffffff0a;
  opacity: .8;
}

/* Desktop breakpoint — show inline nav, hide toggle */
@media (width >=1280px) {
  .l-header-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 24px;
    padding-top: 0;
    padding-bottom: 0;
    display: grid;
  }

  .l-logo-link {
    justify-self: start;
  }

  .l-menu-toggle {
    display: none;
  }

  .l-nav {
    z-index: auto;
    width: max-content;
    max-width: 100%;
    box-shadow: none;
    border-top: none;
    flex-flow: row;
    grid-column: 2;
    justify-content: center;
    justify-self: center;
    align-items: center;
    gap: clamp(16px, 1.6vw, 34px);
    padding: 0;
    display: flex;
    position: static;
  }

  /* Always show nav on desktop */
  .l-nav {
    display: flex !important;
  }

  .l-nav-link {
    min-height: unset;
    border-bottom: none;
    flex-shrink: 0;
    padding: 0;
  }

  .l-end-group {
    grid-column: 3;
    justify-self: end;
  }
}

@media (width <=1279px) {
  .l-header-inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  /* Hide old dropdown nav, use side panel instead */
  .l-nav {
    display: none !important;
  }
}

@media (width <=767px) {
  .l-header-inner {
    min-height: unset;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .l-logo {
    width: 164px;
  }
}

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.l-hero {
  background-color: #fad0b4;
  background-image: url('../images/landing/banner-principal.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.l-hero-mobile-img {
  display: none;
}

.l-hero-inner {
  align-items: center;
  min-height: clamp(820px, 50vw, 980px);
  padding: 80px 0 92px;
  display: flex;
}

.l-hero-copy {
  max-width: 640px;
  padding-top: 18px;
}

.l-hero-title {
  font-family: var(--font-display);
  letter-spacing: -.04em;
  text-transform: uppercase;
  margin: 0 0 22px;
  font-size: clamp(4rem, 5.4vw, 7.8rem);
  font-weight: 400;
  line-height: .92;
}

.l-hero-desc,
.l-hero-highlight {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.24rem, 1.18vw, 1.6rem);
  font-weight: 700;
  line-height: 1.12;
}

.l-hero-desc {
  margin-bottom: 20px;
}

.l-hero-highlight {
  text-transform: uppercase;
  margin-bottom: 42px;
}

@media (width <=1279px) {
  .l-hero-inner {
    min-height: clamp(560px, 72vw, 860px);
    padding: 72px 0 86px;
  }

  .l-hero-copy {
    max-width: min(510px, 100%);
  }

  .l-hero-title {
    font-size: clamp(2.65rem, 4.2vw + 1.35rem, 7.8rem);
  }

  .l-hero-desc,
  .l-hero-highlight {
    font-size: clamp(1.05rem, .85vw + .65rem, 1.6rem);
  }
}

@media (width <=767px) {
  .l-hero {
    background-image: none;
  }

  .l-hero-mobile-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .l-hero-inner {
    min-height: 0;
    padding: 24px 0 40px;
    display: block;
    position: static;
  }

  .l-hero-copy {
    max-width: 100%;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .l-hero-desc,
  .l-hero-highlight {
    max-width: 100%;
  }

  .l-hero-copy .btn-primary {
    white-space: nowrap;
    width: max-content;
    max-width: min(400px, 100vw - 48px);
    margin-top: 28px;
  }
}

/* ═══════════════════════════════════
   MARKET SECTION
   ═══════════════════════════════════ */
.l-market {
  color: #fff;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: clamp(88px, 8vw, 136px) 0 44px;
}

.l-market-inner {
  position: relative;
}

.l-market-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 3.2vw, 64px);
  display: grid;
}

.l-market-copy {
  justify-self: end;
  max-width: 620px;
}

.l-market-title {
  color: #d0d6da;
  font-family: var(--font-display);
  /* letter-spacing: -.05em; */
  text-transform: uppercase;
  margin: 0 0 30px;
  font-size: clamp(3.6rem, 5vw, 6.8rem);
  font-weight: 400;
  line-height: 1;
}

.l-market-copy p {
  max-width: 430px;
  margin: 0;
  font-size: clamp(1.22rem, 1.08vw, 1.48rem);
  font-weight: 700;
  line-height: 1.12;
}

.l-market-copy p+p {
  margin-top: 24px;
}

.l-checklist-panel {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(20px);
  background: linear-gradient(#261c160d, #18151200);
  border: 1px solid #ffffff24;
  border-radius: 28px;
  justify-self: start;
  width: min(100%, 650px);
  padding: 28px 30px;
  box-shadow: 0 26px 42px #0000004d;
}

.l-checklist {
  flex-direction: column;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-check-item {
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: clamp(1.14rem, 1vw, 1.34rem);
  font-weight: 700;
  line-height: 1.12;
  display: flex;
}

.l-check-item+.l-check-item {
  border-top: 1px solid #ffffff2e;
}

.l-check-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.l-check-icon svg {
  width: 100%;
  height: 100%;
}

.l-market-line {
  background: #ffffffb8;
  width: 100%;
  height: 1px;
  margin-top: clamp(40px, 4.6vw, 74px);
}

.l-market-claim {
  font-family: var(--font-display);
  letter-spacing: -.04em;
  text-align: center;
  text-transform: uppercase;
  margin: 18px 0 0;
  font-size: clamp(2.4rem, 3.2vw, 4.1rem);
  font-weight: 400;
  line-height: .96;
}

@media (width <=1279px) {
  .l-market-title {
    font-size: clamp(2.35rem, 3.8vw + 1.1rem, 6.8rem);
  }

  .l-market-claim {
    font-size: clamp(1.55rem, 2.4vw + .75rem, 4.1rem);
  }

  .l-market-grid {
    grid-template-columns: 1fr;
  }

  .l-market-copy,
  .l-checklist-panel {
    justify-self: stretch;
    max-width: 100%;
  }

  .l-checklist-panel {
    width: 100%;
  }
}

@media (width <=767px) {
  .l-market {
    padding: clamp(64px, 12vw, 100px) 0 36px;
  }

  .l-market-copy p {
    max-width: 100%;
  }

  .l-checklist-panel {
    border-radius: 22px;
    padding: 22px 20px;
  }

  .l-check-item {
    gap: 12px;
    padding: 12px 0;
  }

  .l-check-icon {
    width: 22px;
    height: 22px;
  }
}

/* ═══════════════════════════════════
   FORMATS / PRESENTATIONS
   ═══════════════════════════════════ */
.l-formats {
  background: #f0e8e4;
  padding: clamp(86px, 8vw, 126px) clamp(12px, 3vw, 28px) clamp(92px, 9vw, 138px) clamp(12px, 4vw, 40px);
  overflow: clip visible;
  position: relative;
}

.l-cookie-deco {
  z-index: 0;
  object-fit: contain;
  object-position: left bottom;
  pointer-events: none;
  width: clamp(300px, 36vw, 480px);
  height: auto;
  max-height: min(760px, 76vh);
  display: block;
  position: absolute;
  bottom: clamp(20px, 3.5vw, 76px);
  left: 0;
  transform: translate(-10%) translateY(4%);
}

.l-formats-inner {
  z-index: 1;
  position: relative;
}

.l-formats-headline {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto clamp(50px, 5vw, 86px);
}

.l-formats-title {
  font-family: var(--font-display);
  letter-spacing: -.05em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-size: clamp(4rem, 6vw, 7.8rem);
  font-weight: 400;
  line-height: .9;
}

.l-formats-subtitle {
  max-width: min(780px, 100%);
  margin: 0 auto;
  font-size: clamp(1.18rem, 1.06vw, 1.44rem);
  font-weight: 700;
  line-height: 1.15;
}

.l-format-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(24px, 1.6vw, 34px);
  max-width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
}

.l-format-card {
  z-index: 1;
  text-align: center;
  background: #fff;
  border-radius: 36px;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 20px 20px 24px;
  display: flex;
  position: relative;
  box-shadow: 0 18px 36px #472b1c0d;
}

.l-card-img-wrap {
  flex-shrink: 0;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 360px;
  margin-bottom: 10px;
  display: flex;
  overflow: visible;
}

.l-card-img {
  object-fit: contain;
  object-position: center bottom;
  width: auto;
  max-width: 92%;
  height: 100%;
  margin: 0 auto;
  display: block;
}

.l-card-title,
.l-card-pvp {
  color: #ac2a24;
  text-transform: uppercase;
  font-size: clamp(1.72rem, 1.58vw, 2.14rem);
  font-weight: 800;
  line-height: 1;
}

.l-card-title {
  margin: 0 0 5px;
}

.l-card-desc {
  flex: auto;
  max-width: min(292px, 100%);
  margin: 0;
  font-size: clamp(1.12rem, 1.02vw, 1.32rem);
  font-weight: 700;
  line-height: 1.08;
}

.l-card-pvp {
  border: 1px solid #ac2a2473;
  border-radius: 999px;
  flex-shrink: 0;
  margin: clamp(12px, 1.5vw, 18px) 0 0;
  padding: 8px 20px;
}

@media (width <=1279px) {
  .l-formats-title {
    font-size: clamp(2.5rem, 4.5vw + 1.2rem, 7.8rem);
  }

  .l-format-cards {
    max-width: 820px;
    margin: 0 auto;
  }

  .l-card-img-wrap {
    height: 330px;
  }

  .l-card-img {
    max-width: 90%;
  }

  .l-cookie-deco {
    width: clamp(260px, 40vw, 440px);
    max-height: min(640px, 70vh);
    bottom: clamp(18px, 3.5vw, 64px);
    transform: translate(-10%) translateY(3%);
  }
}

@media (width <=767px) {
  .l-formats {
    padding: clamp(64px, 10vw, 86px) clamp(10px, 3vw, 24px) clamp(72px, 11vw, 92px) clamp(8px, 3.5vw, 28px);
  }

  .l-format-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .l-format-card {
    border-radius: 28px;
    padding: 18px 18px 24px;
  }

  .l-card-img-wrap {
    height: 300px;
    margin-bottom: 12px;
  }

  .l-card-img {
    max-width: 88%;
  }

  .l-cookie-deco {
    width: clamp(160px, 52vw, 280px);
    max-height: min(420px, 48vh);
    bottom: clamp(12px, 3vw, 32px);
    transform: translate(-8%) translateY(2%);
  }
}

/* ═══════════════════════════════════
   ESSENTIALS ("Lo Esencial")
   ═══════════════════════════════════ */
.l-essentials {
  background: #fbf6f2;
  padding: clamp(88px, 8vw, 136px) 0;
}

.l-ess-grid {
  text-align: center;
  grid-template-columns: 1fr;
  grid-template-areas: "headline" "visual" "copy";
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  display: grid;
}

.l-ess-title {
  font-family: var(--font-display);
  letter-spacing: -.045em;
  text-transform: uppercase;
  grid-area: headline;
  margin: 0;
  font-size: clamp(2.35rem, 3.6vw + 1rem, 6.6rem);
  font-weight: 400;
  line-height: .93;
}

.l-ess-visual {
  grid-area: visual;
  justify-content: center;
  align-items: center;
  display: flex;
}

.l-ess-visual img {
  width: min(100%, 760px);
  margin: 0 auto;
}

.l-ess-copy {
  grid-area: copy;
  max-width: 700px;
  margin: 0 auto;
}

.l-ess-copy p {
  margin: 0;
  font-size: clamp(1.05rem, .75vw + .65rem, 1.55rem);
  font-weight: 700;
  line-height: 1.15;
}

.l-ess-copy p+p {
  margin-top: 24px;
}

@media (width <=1279px) {
  .l-ess-visual img {
    width: min(100%, 560px);
  }
}

@media (width >=1280px) {
  .l-ess-grid {
    text-align: initial;
    grid-template-columns: minmax(0, .98fr) minmax(0, .95fr);
    grid-template-areas: "visual headline" "visual copy";
    gap: 26px clamp(38px, 5vw, 96px);
  }

  .l-ess-title {
    text-align: left;
    justify-self: start;
    font-size: clamp(3.5rem, 4.8vw, 6.6rem);
  }

  .l-ess-visual {
    align-items: center;
  }

  .l-ess-copy {
    text-align: left;
    justify-self: start;
    max-width: 700px;
    margin: 0;
  }

  .l-ess-copy p {
    font-size: clamp(1.22rem, 1.1vw, 1.55rem);
  }
}

@media (width <=767px) {
  .l-essentials {
    padding: clamp(64px, 11vw, 88px) 0;
  }
}

/* ═══════════════════════════════════
   BRIDGE (Product Keys Image)
   ═══════════════════════════════════ */
.l-bridge {
  color: var(--color-text);
  background-color: #fbf6f2;
  padding: 0;
}

.l-bridge-frame {
  width: 100%;
  position: relative;
}

.l-bridge-img {
  width: 100%;
  height: auto;
}

.l-bridge-overlay {
  pointer-events: none;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(28px, 5vw, 72px);
  display: flex;
  position: absolute;
  inset: 0;
}

.l-bridge-title {
  max-width: 920px;
  font-family: var(--font-display);
  letter-spacing: -.045em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: -1px -1px #fffffff2, 1px -1px #fffffff2, -1px 1px #fffffff2, 1px 1px #fffffff2,
    0 0 24px #fbf6f2e6, 0 2px 8px #0000001f;
  flex-direction: column;
  gap: .06em;
  margin: 0;
  font-size: clamp(2.5rem, 3.8vw, 5rem);
  font-weight: 400;
  line-height: .94;
  display: flex;
}

@media (width <=1279px) {
  .l-bridge-title {
    font-size: clamp(1.95rem, 2.8vw + 1rem, 5rem);
  }
}

/* ═══════════════════════════════════
   BENEFITS (Hecha para rendir)
   ═══════════════════════════════════ */
.l-benefits {
  background: #e9dfda;
  padding: clamp(84px, 8vw, 130px) 0 clamp(80px, 8vw, 126px);
}

.l-benefits-inner {
  text-align: center;
}

.l-benefits-title {
  font-family: var(--font-display);
  letter-spacing: -.04em;
  text-transform: uppercase;
  margin: 0 0 clamp(42px, 4vw, 70px);
  font-size: clamp(2.9rem, 4.1vw, 5.2rem);
  font-weight: 400;
  line-height: .96;
}

.l-benefits-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 1.2vw, 22px) clamp(18px, 1.2vw, 28px);
  display: grid;
}

.l-benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-benefit-card-title {
  text-align: center;
  justify-content: center;
  align-self: center;
  align-items: center;
  max-width: 170px;
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 1vw, 1.38rem);
  font-weight: 800;
  line-height: 1.2;
  display: flex;
  min-height: 2.4em;
}

.l-icon-circle {
  background: #ffffffc2;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: clamp(140px, 10vw, 182px);
  height: clamp(140px, 10vw, 182px);
  margin: 0 0 10px;
  display: flex;
}

.l-icon-circle img {
  object-fit: contain;
  width: 66%;
  height: 66%;
}

.l-benefit-desc {
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 184px;
  min-height: 2.12em;
  margin: 0;
  font-size: clamp(1rem, .92vw, 1.18rem);
  font-weight: 700;
  line-height: 1.06;
  display: flex;
}

@media (width <=1279px) {
  .l-benefits-title {
    font-size: clamp(1.85rem, 2.8vw + .85rem, 5.2rem);
  }

  .l-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: clamp(22px, 2.8vw, 30px);
  }
}

@media (width <=767px) {
  .l-benefits {
    padding: clamp(64px, 10vw, 84px) 0 clamp(60px, 9vw, 80px);
  }

  .l-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(12px, 3vw, 18px);
  }

  .l-icon-circle {
    width: clamp(120px, 28vw, 160px);
    height: clamp(120px, 28vw, 160px);
  }
}

@media (width <=480px) {
  .l-benefits-grid {
    grid-template-columns: 1fr;
  }

  .l-benefit-card-title,
  .l-benefit-desc {
    max-width: min(280px, 100%);
  }
}

/* ═══════════════════════════════════
   DOWNLOADS (Datos Reales)
   ═══════════════════════════════════ */
.l-downloads {
  z-index: 1;
  isolation: isolate;
  box-sizing: border-box;
  background: #fbf6f2;
  width: 100%;
  padding: 80px 0 clamp(112px, 18vw, 200px);
  overflow: visible;
  position: relative;
}

.l-downloads::before {
  content: "";
  z-index: -1;
  background-image: url('../images/landing/bg-people/bg-people-md.webp');
  opacity: .18;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
}

@media (min-width: 700px) {
  .l-downloads::before {
    background-image: url('../images/landing/bg-people/bg-people-xl.webp');
  }
}

.l-dl-grid {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 3.2vw, 64px);
  display: grid;
}

.l-dl-copy {
  justify-self: end;
  max-width: 590px;
}

.l-dl-title {
  font-family: var(--font-display);
  letter-spacing: -.05em;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-size: clamp(3.8rem, 5vw, 6.8rem);
  font-weight: 400;
  line-height: .92;
}

.l-dl-copy p {
  max-width: 420px;
  margin: 0;
  font-size: clamp(1.2rem, 1.06vw, 1.45rem);
  font-weight: 700;
  line-height: 1.14;
}

.l-dl-divider {
  background: #24171242;
  width: 1px;
  height: min(100%, 320px);
  min-height: 250px;
}

.l-dl-actions {
  justify-self: start;
}

.l-dl-actions-title {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 1.24vw, 1.85rem);
  font-weight: 800;
  line-height: 1;
}

.l-dl-actions-list {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

@media (width <=1279px) {
  .l-dl-title {
    font-size: clamp(2.4rem, 3.8vw + 1rem, 6.8rem);
  }

  .l-dl-grid {
    text-align: center;
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 48px);
  }

  .l-dl-copy,
  .l-dl-actions {
    justify-self: center;
    max-width: 100%;
  }

  .l-dl-copy p {
    max-width: min(420px, 100%);
    margin: 0 auto;
  }

  .l-dl-divider {
    width: 100%;
    max-width: 200px;
    height: 1px;
    min-height: 1px;
    margin: 0 auto;
  }

  .l-dl-actions-list {
    align-items: stretch;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (width >=1024px) {
  .l-downloads {
    padding: 112px 0 clamp(144px, 12vw, 220px);
  }
}

/* ═══════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════ */
.l-final-cta {
  z-index: 2;
  box-sizing: border-box;
  background: #f5f0e8;
  width: 100%;
  padding: clamp(40px, 6vw, 56px) 0 clamp(48px, 7vw, 72px);
  position: relative;
  overflow: visible;
}

.l-final-layer {
  z-index: 2;
  width: min(1920px, calc(100% - var(--container-gutter-lg)));
  box-sizing: border-box;
  margin-inline: auto;
  position: relative;
}

@media (width <=1279px) {
  .l-final-layer {
    width: min(1920px, calc(100% - var(--container-gutter-md)));
  }
}

@media (width <=767px) {
  .l-final-layer {
    width: min(1920px, calc(100% - var(--container-gutter-sm)));
  }
}

.l-cta-texture {
  z-index: 1;
  pointer-events: none;
  background-color: transparent;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50%;
  min-height: clamp(148px, 24vw, 240px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.l-cta-stage {
  z-index: 0;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.l-cta-product-wrap {
  left: max(0px, env(safe-area-inset-left, 0px));
  z-index: 3;
  pointer-events: none;
  width: min(84vw, 455.591px);
  position: absolute;
  top: clamp(-5.5rem - 2cm, -11vw - 2cm, -2.25rem - 2cm);
  transform: translate(calc(5px - .5rem), calc(3.6rem - 1cm));
}

.l-cta-product-wrap img {
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 28px 48px #00000038);
  width: 100%;
  height: auto;
  display: block;
}

.l-cta-content {
  z-index: 4;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: min(42rem, 100%);
  margin-left: auto;
  margin-right: 0;
  padding-top: clamp(5rem, 24vw, 9.5rem);
  padding-bottom: clamp(.75rem, 2.5vw, 1.75rem);
  display: flex;
  position: relative;
}

.l-cta-editorial {
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(1920px, 100%);
  margin: 0 auto;
  padding: 1.5rem 24px 0;
  display: flex;
}

.l-cta-lockup {
  object-fit: contain;
  width: auto;
  max-width: min(100%, 24rem);
  height: auto;
  margin-bottom: -2rem;
  display: block;
  transform: translateY(-2rem);
}

.l-cta-copy {
  text-align: center;
  width: 100%;
  max-width: min(28rem, 420px);
  margin: 2.75rem 0 0;
  font-size: clamp(1.2rem, 1.06vw, 1.45rem);
  font-weight: 700;
  line-height: 1.14;
}

.l-cta-buttons {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(.75rem, 2.5vw, 1.25rem);
  width: 100%;
  margin-top: clamp(1.15rem, 2.8vw, 2rem);
  display: flex;
}

@media (width >=640px) {
  .l-cta-product-wrap {
    width: min(78vw, 525.591px);
    top: clamp(-7.5rem - 2cm, -12.5vw - 2cm, -3.25rem - 2cm);
    transform: translate(calc(5px - .75rem), calc(5.1rem - 1cm));
  }

  .l-cta-content {
    padding-top: clamp(4.5rem, 19vw, 7.75rem);
  }

  .l-cta-lockup {
    max-width: min(100%, 22rem);
    margin-bottom: -3rem;
    transform: translateY(-3rem);
  }

  .l-cta-copy {
    margin-top: 3rem;
  }
}

@media (width >=768px) and (width <=1023px) {
  .l-final-cta {
    padding: clamp(44px, 5vw, 56px) 0 clamp(52px, 6vw, 64px);
  }

  .l-cta-texture {
    height: 46%;
    min-height: clamp(128px, 19vw, 204px);
  }

  .l-cta-stage {
    min-height: clamp(20rem, 48vh, 30rem);
    padding-bottom: .5rem;
  }

  .l-cta-product-wrap {
    width: min(44vw, 416.693px);
    left: max(4px, env(safe-area-inset-left, 0px));
    top: clamp(-6rem - 1cm, -11vw - 1cm, -2.75rem - 1cm);
    transform: translate(calc(5px - .35rem), calc(3.25rem - 1cm));
  }

  .l-cta-content {
    max-width: min(38rem, 100% - min(200px, 28vw));
    margin-left: auto;
    margin-right: max(0px, env(safe-area-inset-right, 0px));
    padding-top: clamp(3rem, 13vw, 5.25rem);
    padding-bottom: clamp(.85rem, 2vw, 1.35rem);
  }

  .l-cta-editorial {
    padding: 1rem clamp(20px, 3vw, 40px) 0;
  }

  .l-cta-lockup {
    max-width: min(100%, 23rem);
    margin-bottom: -2.5rem;
    transform: translateY(-2.35rem);
  }

  .l-cta-copy {
    margin-top: clamp(2.5rem, 4vw, 2.85rem);
    font-size: clamp(1.1rem, 1.35vw, 1.32rem);
  }

  .l-cta-buttons {
    margin-top: clamp(1rem, 2.4vw, 1.65rem);
  }
}

@media (width >=1024px) {
  .l-final-cta {
    padding: clamp(64px, 7vw, 80px) 0 clamp(56px, 8vw, 88px);
  }

  .l-cta-product-wrap {
    left: max(12px, env(safe-area-inset-left, 0px));
    width: min(50vw, 615.591px);
    top: clamp(-239.591px, -14.5vw - 2cm, -143.591px);
    transform: translate(calc(5px - 1rem), calc(7.3rem - 1cm));
  }

  .l-cta-content {
    max-width: min(44rem, 58%);
    margin-left: calc(min(40%, 480px) + 2cm);
    margin-right: max(0px, env(safe-area-inset-right, 0px));
    align-self: center;
    padding-top: clamp(.5rem, 2vw, 1.5rem);
    padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  }

  .l-cta-editorial {
    max-width: min(1920px, 100%);
    padding: 1rem 64px 0;
  }

  .l-cta-lockup {
    max-width: min(100%, 28rem);
    margin-bottom: -4rem;
    transform: translateY(-4rem);
  }
}

@media (width >=1280px) {
  .l-cta-lockup {
    max-width: min(100%, 32rem);
  }

  .l-cta-content {
    max-width: min(46rem, 56%);
    margin-left: calc(min(42%, 520px) + 2cm);
  }
}

@media (width <=767px) {
  .l-final-cta {
    padding-top: max(32px, env(safe-area-inset-top, 0px));
    padding-bottom: max(36px, env(safe-area-inset-bottom, 0px), clamp(40px, 8vw, 56px));
  }

  .l-cta-texture {
    height: calc(clamp(100px, 28vw, 168px) + 1.75cm);
    min-height: 0;
    max-height: min(42vh, 240px);
  }

  .l-cta-stage {
    min-height: clamp(24rem, min(78vh, 82dvh), 38rem);
    padding-bottom: max(.25rem, env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    display: flex;
  }

  .l-cta-product-wrap {
    width: min(88vw, 416.693px);
    left: max(0px, env(safe-area-inset-left, 0px));
  }

  .l-cta-content {
    width: 100%;
    max-width: 100%;
    padding-top: clamp(.35rem, 2vw, .65rem);
    padding-bottom: max(.75rem, env(safe-area-inset-bottom, 0px));
    flex-shrink: 0;
    align-self: stretch;
    margin-inline: auto;
  }

  .l-cta-editorial {
    width: 100%;
    max-width: min(26rem, 100% - 16px);
    padding: .5rem max(16px, env(safe-area-inset-right, 0px)) .75rem max(16px, env(safe-area-inset-left, 0px));
    box-sizing: border-box;
    margin-inline: auto;
    transform: translateY(calc(.65rem + 1.5cm));
  }

  .l-cta-lockup {
    max-width: min(100%, 20rem);
    margin-bottom: -1.25rem;
    transform: translateY(-1rem);
  }

  .l-cta-copy {
    max-width: 100%;
    margin-top: clamp(1.65rem, 5vw, 2rem);
    padding-inline: 2px;
    font-size: clamp(1.05rem, 4.1vw, 1.18rem);
    line-height: 1.16;
  }

  .l-cta-buttons {
    flex-direction: column;
    align-items: center;
    margin-top: clamp(1rem, 3.5vw, 1.35rem);
  }
}

@media (width <=479px) {
  .l-cta-texture {
    max-height: min(40vh, 220px);
  }

  .l-cta-stage {
    min-height: clamp(22rem, min(74vh, 80dvh), 36rem);
  }

  .l-cta-lockup {
    max-width: min(100%, 18rem);
    margin-bottom: -1rem;
    transform: translateY(-.85rem);
  }

  .l-cta-editorial {
    transform: translateY(calc(.5rem + 1.35cm));
  }
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.l-footer {
  color: #fff;
  background: #000;
}

.l-footer-top {
  padding: 24px 0 22px;
}

.l-footer-grid {
  grid-template-columns: 1.18fr .9fr .9fr;
  align-items: center;
  display: grid;
}

.l-footer-grid>* {
  justify-content: center;
  align-items: center;
  min-height: 35.3px;
  padding: 0 24px;
  display: flex;
}

.l-footer-grid>*+* {
  border-left: 1px solid #ffffff4d;
}

.l-footer-brand img {
  width: min(100%, 283px);
}

.l-footer-product img {
  width: min(100%, 163px);
}

.l-footer-claim {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1.22rem, 1.06vw, 1.44rem);
  font-weight: 800;
  line-height: 1.06;
}

.l-footer-bottom {
  letter-spacing: .4em;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90deg, #232323, #0e0e0e 50%, #232323);
  padding: 16px 20px;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
}

@media (width <=1279px) {
  .l-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .l-footer-grid> :nth-child(3) {
    border-left: none;
  }
}

@media (width <=767px) {
  .l-footer-top {
    padding: 18px 0;
  }

  .l-footer-grid {
    grid-template-columns: 1fr;
  }

  .l-footer-grid>*+* {
    border-top: 1px solid #ffffff2e;
    border-left: none;
  }

  .l-footer-bottom {
    letter-spacing: clamp(.12em, 1.2vw, .28em);
    padding: 14px 16px;
    font-size: clamp(.58rem, 2.8vw, .64rem);
    line-height: 1.35;
  }
}

.l-icon-circle img {
    margin: auto;
}