/* ═══════════════════════════════════════════════════════
   CHURROS95 — style.css
   Mobile-first responsive. Apache + PHP compatible.
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --c-bg:        #0f0d0b;
  --c-surface:   #1a1612;
  --c-surface2:  #231e18;
  --c-brand:     #C8621A;
  --c-brand-lt:  #E07A30;
  --c-brand-dk:  #96461000;
  --c-warm:      #8B5B2F;
  --c-gold:      #D4A853;
  --c-cream:     #F5EDD8;
  --c-text:      #EDE8DF;
  --c-muted:     #9A9188;
  --c-border:    rgba(200,98,26,0.18);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --r-sm:   6px;
  --r-md:  14px;
  --r-lg:  24px;
  --r-xl:  40px;
  --r-full: 9999px;

  --shadow-warm: 0 8px 40px rgba(200,98,26,0.18);
  --shadow-deep: 0 24px 80px rgba(0,0,0,0.55);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 68px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 600; color: var(--c-cream); }

/* ── LAYOUT HELPERS ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}
.text-center { text-align: center; }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal--delay1 { transition-delay: 0.12s; }
.reveal--delay2 { transition-delay: 0.22s; }
.reveal--delay3 { transition-delay: 0.34s; }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  background: var(--c-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(200,98,26,0.35);
}

.btn--primary:hover {
  background: var(--c-brand-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,98,26,0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border: 1.5px solid rgba(245,237,216,0.3);
}
.btn--ghost:hover {
  border-color: var(--c-brand);
  color: var(--c-brand-lt);
  transform: translateY(-2px);
}

/* ── SECTION TYPOGRAPHY ──────────────────────────────── */
.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--c-cream);
  margin-bottom: 20px;
}
.section__title em {
  font-style: italic;
  color: var(--c-brand-lt);
}
.section__title--light { color: #fff; }

.section__body {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 520px;

  margin-inline: auto; /* ← esto */
  
  line-height: 1.75;
  margin-bottom: 32px;
}

.section__body--light { color: rgba(245,237,216,0.75); }

.section { padding-block: 80px; }

/* ─────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(15,13,11,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 28px;
  max-width: 1200px;
  margin-inline: auto;
}
.nav__brand {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--font-display);
  font-weight: 900;
}
.nav__brand-num {
  font-size: 2rem;
  color: var(--c-brand);
  line-height: 1;
}
.nav__brand-text {
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--c-cream);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-muted);
  padding: 8px 14px;
  border-radius: var(--r-full);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--c-cream); background: rgba(255,255,255,0.06); }

.nav__link--cta {
  background: var(--c-brand);
  color: #fff !important;
  padding: 9px 20px;
  font-weight: 600;
}

.nav__link--cta:hover { background: var(--c-brand-lt); }


/* Boton verde stock */
.nav__link--stock {
  background: transparent;
  color: var(--c-muted);
  border: 1.0px solid #25d366;
  box-shadow: 0 0 12px #25d36622;
}
.nav__link--stock:hover {
  background: #25d36618;
  color: #25d366;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__logo {
  height: 40px;
  width: auto;
  display: block;
  
}

/* ─────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  padding-inline: 28px;
  overflow: hidden;
  gap: 40px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200,98,26,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(139,91,47,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__bg-text {
  position: absolute;
  bottom: -4vw;
  left: -2vw;
  font-family: var(--font-display);
  font-size: clamp(80px, 20vw, 220px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,98,26,0.09);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}
.hero__content {
  flex: 1 1 0;
  max-width: 50%;          /* techo fijo */
}

/*
.hero__content {
  position: relative;
  flex: 1 1 520px;
  max-width: 580px;
  z-index: 2;
}
  */

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.04;
  color: var(--c-cream);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--c-brand-lt);
}
.hero__sub {
  font-size: 1.2rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero__sub strong { color: var(--c-gold); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__img-wrap {
  flex: 1 1 0;
  max-width: 50%;          /* techo fijo */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 
.hero__img-wrap {
  flex: 1 1 380px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
  */

.hero__img-wrap::before {
  content: '';
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(200,98,26,0.20) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}
.hero__img-wrap img { 
  max-height: 520px; 
  filter: drop-shadow(0 20px 60px rgba(200,98,26,0.25));
}
.hero__img-placeholder svg { width: 100%; max-width: 360px; }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────────────────
   IMG CARD (reutilizable)
───────────────────────────────────────────────────── */
.img-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-deep);
}
.img-card img { width: 100%; display: block; }
.img-card__badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--c-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
}
.img-placeholder {
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--c-muted);
  background: var(--c-surface2);
  font-style: italic;
}
.img-placeholder--dark { background: rgba(0,0,0,0.3); }

/* ─────────────────────────────────────────────────────
   INVERSIÓN
───────────────────────────────────────────────────── */
.inversion__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.inversion__text { max-width: 520px; }
.inversion__text .btn { margin-top: 8px; }
.inversion__img .img-card { max-width: 480px; }

/* Stats */
.stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--c-brand-lt);
  line-height: 1;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--c-muted);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────────────
   BAND (dark featured section)
───────────────────────────────────────────────────── */
.band {
  background: linear-gradient(135deg, #1c1208 0%, #2a1a0a 50%, #1a110500 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-block: 80px;
}
.band--light {
  background: var(--c-surface);
}
.band__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.band__inner--centered {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}
.band__text--center { max-width: 520px; }
.band__img .img-card,
.band__img .img-placeholder { border-radius: var(--r-lg); }
.band__img .img-placeholder--dark { min-height: 380px; }

/* feature-list */
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(245,237,216,0.8);
}
.feature-list__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--c-brand-lt);
}

/* truck svg */
.truck-svg {
  width: 160px;
  height: auto;
  color: var(--c-brand-lt);
  opacity: 0.85;
}

/* ─────────────────────────────────────────────────────
   RELLENOS / DIPS
───────────────────────────────────────────────────── */
.rellenos { background: var(--c-bg); }
.rellenos .section__body { margin-inline: auto; }

.dips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.dip-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.dip-card__circle {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  overflow: hidden;
  /* box-shadow: 0 8px 24px rgba(0,0,0,0.5); */
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.dip-card__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dip-maring-text {
  padding-bottom: 35px;
  margin: -20px;
}

.dip-card:hover .dip-card__circle {
  transform: scale(1.5) translateY(-4px);
  /* box-shadow: 0 16px 36px rgba(0,0,0,0.6); */
}

.dip-card:hover .dip-card__circle {
  transform: scale(1.5) translateY(-4px);
  /* box-shadow: 0 16px 36px rgba(0,0,0,0.5), inset 0 2px 4px rgba(255,255,255,0.15); */
}
.dip-card span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-muted);
  text-align: center;
}

/* ─────────────────────────────────────────────────────
   PRESENTACIÓN & COCCIÓN
───────────────────────────────────────────────────── */
.presentacion { background: var(--c-surface); }

.presentacion__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}

.precios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.pres-card {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.pres-card:hover {
  border-color: rgba(200,98,26,0.35);
  box-shadow: var(--shadow-warm);
}

/* Foto de producto dentro de la card presentación */
.pres-card--foto {
  overflow: hidden;
}
.pres-card__photo {
  margin: 12px -36px -36px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  overflow: hidden;
  max-height: 260px;
}

.pres-card__caption {
  font-size: 0.72rem;
  color: var(--c-muted);
  text-align: center;
  padding: 0px 0 0;
  font-style: italic;
}

.pres-card__photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.pres-card--foto:hover .pres-card__photo img {
  transform: scale(1.04);
}
.pres-card__icon {
  width: 52px; height: 52px;
  color: var(--c-brand-lt);
  margin-bottom: 10px;
}

.pres-card__icon svg { width: 100%; height: 100%; }

.pres-card__icon img {
  width: 52px !important;
  height: 52px !important;
}

.pres-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-cream);
}
.pres-card__body {
  font-size: 1.0rem;
  color: var(--c-muted);
  line-height: 1.7;
}

/* Steps */
.steps {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.step__icon {
  width: 90px; height: 90px;
  background: rgba(200,98,26,0.12);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-brand-lt);
}
.step__icon svg { width: 60px; height: 60px; }

.step__label {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.4;
}

.step__label-italic { 
  font-style: italic; 
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--c-muted);
  margin-top: 10px;
  margin-bottom: 10px;
}

.step__label strong { color: var(--c-cream); display: block; }

.step__arrow {
  font-size: 1.4rem;
  color: var(--c-border);
  line-height: 1;
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────────────────
   LOGÍSTICA
───────────────────────────────────────────────────── */
.logistics__icon { display: flex; align-items: center; justify-content: flex-end; }
.logistics__icon .truck-svg { width: 220px; }

/* ─────────────────────────────────────────────────────
   PEDIDOS / CONTACTO
───────────────────────────────────────────────────── */
.pedidos { background: var(--c-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin-inline: auto;
  margin-top: 44px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}
.contact-card--whatsapp { border-color: rgba(37,211,102,0.3); }
.contact-card--whatsapp:hover { border-color: rgba(37,211,102,0.6); }
.contact-card__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card--whatsapp .contact-card__icon { color: #25d366; }
.contact-card--ubicacion .contact-card__icon { color: var(--c-brand-lt); }
.contact-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-card__label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.contact-card__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1.2;
}

.contact-card-wapp {
  font-family: var(--font-display);
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--c-cream);
  line-height: 0.75;
  position: relative;
  top: -5px;
}

.contact-card__sub {
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.5;
}
.contact-card__icon svg { width: 36px; height: 36px; }

.contact-card__icon img {
  width: 36px;
  height: 36px;
}

/* ─────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────── */
.footer {
  background: var(--c-surface2);
  border-top: 1px solid var(--c-border);
  padding-block: 52px 36px;
}
.footer__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--font-display);
  font-weight: 900;

}
.footer__tagline {
  font-size: 1.25rem;
  font-style: normal;
  font-family: var(--font-display); /* ← esto agregás */
  /* color: var(--c-brand); /* ← naranja */
  color: var(--c-cream); /* ← cremita */
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 7px;
}
.footer__nav a {
  font-size: 0.83rem;
  color: var(--c-muted);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--c-brand-lt); }

.footer__copy {
  font-size: 0.75rem;
  color: rgba(154,145,136,0.5);
  letter-spacing: 0.03em;
  margin-top: 15px;
}

/* ─────────────────────────────────────────────────────
   MODAL COCCION
───────────────────────────────────────────────────── */

.modal-coccion-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-coccion-overlay.is-open {
  display: flex;
}
.modal-coccion-box {
  position: relative;
  max-width: 420px;
  width: 100%;
}
.modal-coccion-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-gold);
  color: #000;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 900px)
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .inversion__grid,
  .band__inner,
  .band__inner--centered,
  .presentacion__grid { grid-template-columns: 1fr; }

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

  .inversion__img { order: -1; }
  .band__img { order: -1; }
  .logistics__icon { justify-content: center; }
  .logistics__icon .truck-svg { width: 160px; }

  .band__text--center { max-width: 100%; }

  .section__body { max-width: 100%; }

  .contact-grid { grid-template-columns: 1fr; max-width: 460px; }

  .stats { gap: 24px; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 640px)
═══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --nav-h: 60px; }

  /* Nav: mostrar burger, ocultar menu */
  .nav__burger { display: flex; }
  .nav__menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: auto;
    background: rgba(15,13,11,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 20px 24px;
    z-index: 99;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__menu.is-open { display: flex; }

  .nav__link { font-size: 1rem; padding: 12px 24px; }

  .nav__link--cta { width: auto; text-align: center; margin-top: 8px; padding: 10px 32px; }

  /* Hero: vertical stack */
  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 40px;
    min-height: 100svh;
    gap: 30px;
  }

  .hero__content {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .hero__sub {
      max-width: 640px;        /* ajustá este valor a gusto */
      margin-inline: auto;     /* para centrarlo */
    }

    .hero__actions {
      max-width: 640px;        /* mismo ancho que el texto */
      margin-inline: auto;
    }

    .btn {
      width: 100%;             /* botones al ancho del contenedor */
      justify-content: center;
    }

  .hero__actions { justify-content: center; }
  .hero__img-wrap { 
    max-width: 85%;
    flex: none;
  }
  .hero__img-wrap img {
    max-height: 260px;
    margin-top: 30px;
  }
  .hero__scroll-hint { display: none; }

  /* General */
  .section { padding-block: 56px; }
  .band { padding-block: 56px; }

  .dips-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .dip-card__circle { width: 100px; height: 100px; }

  .stats { gap: 20px; }
  .stat__num { font-size: 2.2rem; }

  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    justify-items: center;
  }
  .step { width: 100%; }
  .step__arrow { display: none; }

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

  .pres-card { padding: 24px; }

  .contact-grid { margin-top: 32px; }
  .contact-card { padding: 20px; }
  .contact-card__value { font-size: 1.15rem; }
}

@media (max-width: 400px) {
  .dips-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .dip-card__circle { width: 75px; height: 75px; }
  .hero__title { font-size: 2.5rem; }
}
/* ══ MODELO DE NEGOCIO ══ */
.modelo {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.modelo__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
}

.modelo__card {
  background: var(--c-surface);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.modelo__card--inversion {
  border-top: 3px solid var(--c-brand);
}

.modelo__card--ganancia {
  border-top: 3px solid var(--c-gold);
  background: linear-gradient(160deg, var(--c-surface) 60%, rgba(212,175,55,0.08));
}

.modelo__card-icon {
  font-size: 2rem;
}

.modelo__card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--c-text);
  margin: 0;
}

.modelo__monto {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--c-brand);
  line-height: 1;
  font-weight: 900;
}

.modelo__monto--ganancia {
  color: var(--c-gold);
}

.modelo__card-desc {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.5;
  margin: 0;
}

.modelo__sub {
  font-size: 0.8rem;
  opacity: 0.75;
}

.modelo__lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--c-text);
}

.modelo__lista li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.modelo__lista--necesitas li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modelo__lista--necesitas li:last-child {
  border-bottom: none;
}

.modelo__item-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.modelo__margen {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(212,175,55,0.12);
  border-radius: 10px;
  padding: 10px 16px;
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--c-text);
}

.modelo__margen strong {
  color: var(--c-gold);
  font-size: 1.1rem;
}

.modelo__arrow {
  color: var(--c-muted);
  opacity: 0.4;
  width: 40px;
  flex-shrink: 0;
}

.modelo__cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .modelo__grid {
    grid-template-columns: 1fr;
  }
  .modelo__arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}
