/* Stitchers Factory — Programa Custom (editorial) */
:root {
  --ink: #0A0A0A;
  --paper: #FFFFFF;
  --bone: #F4F2EE;
  --bone-2: #ECEAE5;
  --line: #E5E3DF;
  --line-d: rgba(255,255,255,0.18);
  --mute: #8A8682;
  --mute-d: rgba(255,255,255,0.55);
  --hairline: 1px solid var(--line);
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Geist", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --hero-dim: 0.42;
  --marquee-speed: 50s;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow,
.ix,
.tile-label, .tile-meta,
.step-num,
.foot h5, .foot-bottom,
.filtro-tag,
.form-meta,
.field label,
.invest-row .ix,
.invest-row .unit,
.hero-tag,
.nav .nav-side a,
.nav .nav-logo .nav-sub,
.caption,
.ftile-label,
.note,
.hint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.it { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background .35s ease, border-color .35s ease, color .35s ease;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: var(--hairline);
}
.nav-inner {
  height: 68px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-side {
  display: flex; align-items: center; gap: 28px;
}
.nav-side.right { justify-content: flex-end; }
.nav-side a {
  color: var(--paper);
  position: relative; padding: 6px 0;
  transition: color .3s ease;
}
.nav.is-scrolled .nav-side a { color: var(--ink); }
.nav-side a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 1px; background: currentColor; transition: right .35s ease;
}
.nav-side a:hover::after { right: 0; }
.nav-side a.nav-cta { color: var(--paper); }
.nav.is-scrolled .nav-side a.nav-cta { color: var(--ink); }

.nav-logo {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  filter: invert(1);
  transition: filter .35s ease;
}
.nav.is-scrolled .nav-logo { filter: invert(0); }
.nav-logo .nav-wordmark { height: 22px; width: auto; }
.nav-logo .nav-sub {
  font-family: var(--serif); font-style: italic;
  font-size: 12px; letter-spacing: 0.14em; text-transform: none;
  color: var(--ink); margin-top: -1px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}
.hero-photo {
  position: absolute; inset: 0;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center 35%;
  z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.7) 100%),
    rgba(0,0,0,var(--hero-dim));
  z-index: -1;
}
.hero-tag {
  position: absolute; top: 100px; left: 40px; right: 40px;
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.18em;
}
.hero-bottom {
  position: absolute; bottom: 48px; left: 40px; right: 40px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: end;
  gap: 40px;
}
.hero-copy h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(48px, 6.4vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--paper);
  max-width: 14ch;
}
.hero-copy h1 .it {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  letter-spacing: -0.02em;
}
.hero-copy p {
  margin-top: 22px;
  max-width: 50ch;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
}
.hero-actions {
  display: flex; gap: 12px;
  padding-bottom: 6px;
}

/* outlined button — fashion-editorial style */
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 168px;
  padding: 16px 22px;
  border: 1px solid rgba(255,255,255,0.85);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-outline:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn-outline.ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
}
.btn-outline.ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--paper);
  border-color: var(--paper);
}

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  background: var(--paper);
}
.marquee-track {
  display: inline-block;
  animation: scroll var(--marquee-speed) linear infinite;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.marquee-track span { margin: 0 18px; color: var(--mute); }
.marquee-track .dot {
  display: inline-block; width: 4px; height: 4px;
  background: var(--ink); border-radius: 50%;
  vertical-align: middle; margin: 0 14px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTION HEAD ---------- */
section { position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 28px 0 56px;
  border-top: var(--hairline);
  align-items: baseline;
}
.section-head .ix { color: var(--mute); }
.section-head .title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.section-head .title .it { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ---------- PROGRAMA ---------- */
.programa { padding: 100px 0 60px; }
.programa-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: stretch;
  padding-top: 20px;
}
.programa-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bone);
  overflow: hidden;
}
.programa-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.9);
}
.programa-img .caption {
  position: absolute; bottom: 16px; left: 16px;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.programa-text {
  display: flex; flex-direction: column;
  gap: 28px;
  padding-top: 10px;
}
.programa-text .eyebrow { color: var(--mute); }
.programa-text .lede {
  font-family: var(--sans);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.programa-text .body {
  display: flex; flex-direction: column; gap: 18px;
  font-size: 15px; line-height: 1.6;
  color: var(--mute);
  max-width: 44ch;
}
.programa-text .body strong { color: var(--ink); font-weight: 500; }

/* ---------- FEATURE 4-up ---------- */
.feature {
  padding: 40px 0 80px;
}
.feature-head {
  display: flex; justify-content: space-between; align-items: end;
  padding: 0 40px 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.feature-head h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.feature-head h3 .it { font-family: var(--serif); font-style: italic; font-weight: 400; }
.link-arrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: opacity .25s ease;
}
.link-arrow:hover { opacity: 0.55; }

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0 4px;
}
.ftile {
  display: flex; flex-direction: column;
  background: var(--bone);
  transition: background .35s ease;
}
.ftile:hover { background: var(--bone-2); }
.ftile-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bone);
}
.ftile-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.9);
  transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .6s ease;
}
.ftile-img.is-product img {
  object-fit: contain;
  padding: 18% 16%;
  filter: none;
  mix-blend-mode: multiply;
}
.ftile:hover .ftile-img img { transform: scale(1.04); filter: contrast(1.08) saturate(1); }
.ftile-badge {
  position: absolute; right: 12px; bottom: 12px;
  width: 38px; height: 38px;
  background: var(--paper); color: var(--ink);
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 14px;
  transition: transform .35s ease;
}
.ftile:hover .ftile-badge { transform: rotate(-12deg) scale(1.06); }
.ftile-meta {
  padding: 14px 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
  background: var(--paper);
}
.ftile-label { color: var(--mute); }
.ftile-title {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}
.ftile-detail {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mute);
  font-weight: 400;
}

/* ---------- FILTRO ---------- */
.filtro {
  padding: 60px 0 100px;
  background: var(--paper);
}
.filtro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}
.filtro-col {
  padding: 40px 40px 56px;
  border-right: var(--hairline);
}
.filtro-col:last-child { border-right: 0; background: var(--bone); }
.filtro-tag {
  display: block;
  color: var(--mute);
  margin-bottom: 28px;
}
.filtro-col.is-no .filtro-tag { color: var(--ink); }
.filtro-col ul {
  display: flex; flex-direction: column; gap: 18px;
}
.filtro-col li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.filtro-col .mark {
  font-family: var(--mono); font-size: 18px;
  color: var(--mute);
  line-height: 1.2;
}
.filtro-col.is-yes .mark { color: var(--ink); }
.filtro-foot {
  padding-top: 32px;
  max-width: 60ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--mute);
}

/* ---------- PROCESO ---------- */
.process { border-top: var(--hairline); }
.process-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}
.step {
  border-right: var(--hairline);
  padding: 28px 22px 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .3s ease, color .3s ease;
  min-height: 240px;
  cursor: default;
}
.step:last-child { border-right: 0; }
.step:hover { background: var(--ink); color: var(--paper); }
.step:hover .step-num,
.step:hover .step-meta { color: rgba(255,255,255,0.65); }
.step-num { color: var(--mute); transition: color .3s ease; }
.step h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-top: 18px;
}
.step h4 .it { font-family: var(--serif); font-style: italic; font-weight: 400; }
.step-meta {
  font-size: 13px; line-height: 1.55;
  color: var(--mute);
  margin-top: auto;
  max-width: 28ch;
  transition: color .3s ease;
}

/* ---------- INVERSIÓN ---------- */
.invest {
  padding: 100px 0;
  background: var(--paper);
}
.invest-grid {
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}
.invest-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: var(--hairline);
  align-items: baseline;
  transition: background .25s ease, padding .25s ease;
}
.invest-row:last-child { border-bottom: 0; }
.invest-row:hover { background: var(--bone); padding-left: 16px; padding-right: 16px; }
.invest-row .ix { color: var(--mute); }
.invest-row .label {
  font-size: 18px; letter-spacing: -0.01em;
  font-family: var(--sans);
  font-weight: 400;
  text-transform: none;
}
.invest-row .label .it { font-family: var(--serif); font-style: italic; }
.invest-row .qty {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.invest-row .qty .unit {
  font-family: var(--mono); font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.12em;
  margin-left: 4px;
  vertical-align: 6px;
  font-weight: 600;
}
.invest-foot {
  padding-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--mute);
  max-width: 70ch;
}

/* ---------- LOOKBOOK ---------- */
.look { border-top: var(--hairline); padding-bottom: 0; }
.look-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  border-top: var(--hairline);
}
.tile {
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  position: relative;
  overflow: hidden;
  background: var(--bone);
  transition: background .4s ease;
}
.tile:hover { background: var(--bone-2); }
.tile .tile-label {
  position: absolute; top: 16px; left: 16px;
  color: var(--mute);
  z-index: 2;
}
.tile .tile-meta {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between;
  color: var(--mute);
  z-index: 2;
  font-size: 10px;
}
.tile .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  overflow: hidden;
}
.tile-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.9);
  transition: filter .6s ease, transform 1.2s ease;
}
.tile .ph.is-product .tile-photo {
  object-fit: contain;
  padding: 14%;
  filter: none;
  mix-blend-mode: multiply;
}
.tile:hover .tile-photo {
  filter: contrast(1.08) saturate(1);
  transform: scale(1.03);
}
.tile .ph.is-product:hover .tile-photo { transform: scale(1.06); }

.tile.span-3 { grid-column: span 3; }
.tile.span-4 { grid-column: span 4; }
.tile.span-5 { grid-column: span 5; }
.tile.span-6 { grid-column: span 6; }
.tile.span-7 { grid-column: span 7; }
.tile.row-2 { grid-row: span 2; }

/* ---------- FINAL / SOLICITAR ---------- */
.final {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0 100px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.final-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-d);
}
.final-head h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}
.final-head h2 .it { font-family: var(--serif); font-style: italic; font-weight: 400; }
.final-head .pitch {
  display: flex; flex-direction: column; gap: 16px;
  font-size: 16px;
  color: var(--mute-d);
  max-width: 42ch;
  padding-bottom: 12px;
}
.final-head .pitch strong { color: var(--paper); font-weight: 500; }

.form {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 56px 0 0;
}
.form .form-meta { color: var(--mute-d); padding-top: 28px; }

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.field {
  position: relative;
  border-bottom: 1px solid var(--line-d);
  padding: 22px 0 14px;
  transition: border-color .3s ease;
}
.field:nth-child(odd) { padding-right: 32px; }
.field:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--line-d); }
.field:focus-within { border-bottom-color: var(--paper); }
.field.full { grid-column: 1 / -1; padding-left: 0; padding-right: 0; border-left: 0; }
.field label {
  display: block;
  color: var(--mute-d);
  margin-bottom: 12px;
  transition: color .3s ease;
}
.field:focus-within label { color: var(--paper); }
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: none; outline: none;
  font-family: var(--sans);
  font-size: 18px; letter-spacing: -0.01em;
  color: var(--paper);
  padding: 4px 0;
  resize: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.28); }
.field textarea { min-height: 80px; }
.field .focus-ring {
  position: absolute; left: 0; bottom: -1px; width: 0; height: 1px;
  background: var(--paper);
  transition: width .35s ease;
}
.field:focus-within .focus-ring { width: 100%; }

/* choice chips */
.field.choice { padding-top: 28px; padding-bottom: 22px; }
.chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.chip {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: -0.005em;
  padding: 10px 14px;
  border: 1px solid var(--line-d);
  color: rgba(255,255,255,0.75);
  background: transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover { border-color: rgba(255,255,255,0.6); color: var(--paper); }
.chip.is-on {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.field.choice .hint {
  display: block;
  margin-top: 12px;
  color: var(--mute-d);
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.form-submit {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  padding-top: 40px;
}
.form-submit .note {
  color: var(--mute-d);
  max-width: 38ch;
  letter-spacing: 0.1em;
}
.btn-light {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  background: var(--paper); color: var(--ink);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--paper);
  transition: background .25s ease, color .25s ease;
}
.btn-light:hover { background: transparent; color: var(--paper); }
.btn-light[disabled], .btn-light:disabled {
  opacity: 0.5;
  cursor: progress;
  background: var(--paper);
  color: var(--ink);
}
.btn-light .arrow { transition: transform .3s ease; }
.btn-light:hover .arrow { transform: translateX(4px); }

.form-success {
  grid-column: 1 / -1;
  padding: 60px 0;
  display: flex; flex-direction: column; gap: 16px;
  animation: fadeUp .6s ease both;
}
.form-success h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 56px;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.form-success h3 .it { font-family: var(--serif); font-style: italic; font-weight: 400; }
.form-success p { color: var(--mute-d); font-size: 16px; max-width: 52ch; line-height: 1.5; }
.form-success strong { color: var(--paper); font-weight: 500; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- FOOTER ---------- */
.foot {
  background: var(--ink); color: var(--paper);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 80px;
}
.foot h5 { color: var(--mute-d); margin-bottom: 18px; font-weight: 600; }
.foot ul { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.foot ul a:hover { opacity: 0.6; }
.foot-mark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-top: 24px;
}
.foot-mark .it { font-family: var(--serif); font-style: italic; font-weight: 400; }
.foot-glyph {
  width: 56px; height: 56px;
  filter: invert(1);
}
.foot-wordmark {
  height: 64px; width: auto;
  filter: invert(1);
  margin-bottom: -4px;
}
.foot p {
  margin-top: 22px;
  color: var(--mute-d);
  font-size: 13px;
  max-width: 32ch;
  line-height: 1.5;
}
.foot-bottom {
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.42);
  padding-top: 24px;
  border-top: 1px solid var(--line-d);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .programa-grid,
  .filtro-grid,
  .final-head,
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row .ftile:nth-child(n+3) { display: none; }
  .process-rail { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: 0; border-bottom: var(--hairline); }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .form { grid-template-columns: 1fr; }
  .form-fields { grid-template-columns: 1fr; }
  .field:nth-child(even) { padding-left: 0; border-left: 0; }
  .field:nth-child(odd) { padding-right: 0; }
  .nav-side { display: none; }
  .hero-bottom { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { flex-wrap: wrap; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero-tag, .hero-bottom { left: 20px; right: 20px; }
  .programa-grid { grid-template-columns: 1fr; gap: 32px; }
  .filtro-grid { grid-template-columns: 1fr; }
  .filtro-col { border-right: 0; border-bottom: var(--hairline); }
  .invest-row { grid-template-columns: 60px 1fr; }
  .invest-row .qty { grid-column: 1 / -1; }
  .look-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .tile { grid-column: span 1 !important; grid-row: span 1 !important; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .form-submit { flex-direction: column; align-items: flex-start; }
}
