/* ==========================================================================
   SCHOCK BA CHILE — MASTER FRANQUICIA
   Estilo: fiel al sitio https://schockba.com.ar/
   Fondo blanco · Tipografía serif · Elegancia cálida
   ========================================================================== */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  /* Palette (basada en schockba.com.ar: blanco, negro, dorado cálido) */
  --white:      #ffffff;
  --off-white:  #f9f8f6;
  --cream:      #f3ede3;
  --sand:       #e8ddd0;
  --black:      #111111;
  --dark:       #1c1c1c;
  --mid:        #444444;
  --muted:      #888888;
  --gold:       #b8914a;
  --gold-light: #d4aa6e;
  --gold-pale:  rgba(184, 145, 74, 0.12);

  /* Typography */
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w: 1280px;
  --pad-x: clamp(20px, 4vw, 60px);
  --section-y: clamp(60px, 8vw, 110px);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s var(--ease);
  --t-mid:  0.35s var(--ease);
  --t-slow: 0.55s var(--ease);

  /* Shadows */
  --shadow-xs: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 32px rgba(0,0,0,0.10);
}

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ─── Typography scale ───────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.15;
  font-weight: 500;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-lead {
  font-size: 1rem;
  color: var(--mid);
  max-width: 640px;
  line-height: 1.8;
}

/* ─── Divider line (estilo Schock BA AR) ─────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.ornament-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ─── Section wrapper ────────────────────────────────────────────────────── */
.section {
  padding: var(--section-y) 0;
}
.section--white   { background: var(--white); }
.section--off     { background: var(--off-white); }
.section--cream   { background: var(--cream); }
.section--dark    { background: var(--dark); color: var(--white); }

.section-header { margin-bottom: clamp(40px, 5vw, 70px); }
.section-header .eyebrow { margin-bottom: 10px; }

/* ─── CTA Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: var(--t-mid);
  cursor: pointer;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  border: 1.5px solid var(--black);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ══════════════════════════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow var(--t-mid);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo img { height: 38px; width: auto; }
.brand-badge {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 3px 8px;
  border-radius: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-fast);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 10px 22px; font-size: 0.7rem; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  transition: var(--t-fast);
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO SECTION (video de fondo)
══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10px;
  padding-top: 70px; /* header height */
  overflow: hidden;
} 

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 840px;
}

.hero-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 30px;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-metrics {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 32px;
}
.metric-item {}
.metric-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.metric-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════════════════════════════════════════
   SECCIÓN: PORQUE SCHOCK BA TIENE ALGO QUE DECIR
══════════════════════════════════════════════════════════════════════════ */
.statement-section {
  background: var(--white);
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--sand);
}
.statement-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.statement-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-style: italic;
  line-height: 1.3;
  color: var(--black);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}
.statement-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.statement-body p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECCIÓN: LA ESENCIA VIAJA CON NOSOTROS (ADN / Pilares)
══════════════════════════════════════════════════════════════════════════ */
.essence-section { background: var(--off-white); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 48px;
  border: 1px solid var(--sand);
}
.pillar-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background var(--t-mid);
  border-right: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.pillar-card:hover { background: var(--cream); }
.pillar-icon {
  font-size: 1.6rem;
  margin-bottom: 18px;
  display: block;
}
.pillar-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}
.pillar-desc { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }

.dna-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.dna-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
}
.dna-pill {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--mid);
  position: relative;
  padding: 0 12px;
}
.dna-pill::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════════════
   SECCIÓN: ECOSISTEMA DE EXPERIENCIAS
══════════════════════════════════════════════════════════════════════════ */
.ecosystem-section { background: var(--white); }
.ecosystem-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.ecosystem-image {
  position: relative;
}
.ecosystem-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.ecosystem-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.channel-card {
  border: 1px solid var(--sand);
  padding: 28px 24px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.channel-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.channel-num {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}
.channel-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.channel-desc { font-size: 0.88rem; color: var(--mid); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════════════════
   SECCIÓN: EL CONSUMIDOR AL QUE QUEREMOS CONQUISTAR
══════════════════════════════════════════════════════════════════════════ */
.consumer-section { background: var(--cream); }
.consumer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.consumer-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.consumer-stat {
  padding: 24px;
  background: var(--white);
  border-top: 2px solid var(--gold);
}
.consumer-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
}
.consumer-stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}
.consumer-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECCIÓN: EXPERIENCIA DIFERENCIA (Trayectoria & Credenciales)
══════════════════════════════════════════════════════════════════════════ */
.credentials-section { background: var(--dark); color: var(--white); }
.credentials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.credentials-layout .eyebrow { color: var(--gold-light); }
.credentials-layout h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
}
.credentials-layout p { color: rgba(255,255,255,0.75); line-height: 1.8; }

.cred-list { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.cred-item { display: flex; gap: 20px; align-items: flex-start; }
.cred-item-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cred-item-text h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
}
.cred-item-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.credentials-visual img {
   display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0.9);
}

/* ══════════════════════════════════════════════════════════════════════════
   SECCIÓN: EL VERDADERO PUNTO DE PARTIDA (Productos)
══════════════════════════════════════════════════════════════════════════ */
.products-section { background: var(--white); }

/* Tabs */
.catalog-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--sand);
  width: fit-content;
  margin-bottom: 32px;
}
.tab-btn {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  color: var(--muted);
  background: var(--white);
  border-right: 1px solid var(--sand);
  transition: all var(--t-fast);
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active, .tab-btn:hover {
  background: var(--black);
  color: var(--white);
}

/* Accordion collapse for products */
.catalog-collapse {
  border: 1px solid var(--sand);
  margin-bottom: 32px;
  overflow: hidden;
}
.catalog-collapse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  cursor: pointer;
  background: var(--off-white);
  user-select: none;
  transition: background var(--t-fast);
}
.catalog-collapse-header:hover { background: var(--cream); }
.catalog-collapse-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
}
.catalog-collapse-count {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 12px;
}
.catalog-collapse-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--mid);
  transition: transform var(--t-fast), background var(--t-fast);
  flex-shrink: 0;
}
.catalog-collapse.open .catalog-collapse-icon { transform: rotate(45deg); background: var(--black); color: var(--white); border-color: var(--black); }

.catalog-collapse-body {
  display: none;
  padding: 28px;
  border-top: 1px solid var(--sand);
}
.catalog-collapse.open .catalog-collapse-body { display: block; }

/* Subfilters */
.subfilter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.subfilter-btn {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid var(--sand);
  color: var(--mid);
  background: transparent;
  border-radius: 20px;
  transition: all var(--t-fast);
}
.subfilter-btn.active, .subfilter-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.product-card {
  cursor: default;
  transition: transform var(--t-fast);
}
.product-card:hover { transform: translateY(-4px); }

.product-img-box {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--off-white);
  margin-bottom: 14px;
}
.product-img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.product-card:hover .product-img-box img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.92);
  color: var(--mid);
  padding: 4px 10px;
}
.product-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.product-desc { font-size: 0.82rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════════════════════════
   SECCIÓN: UN SCHOCK DE CALIDEZ (Locales - Carrusel)
══════════════════════════════════════════════════════════════════════════ */
.stores-section { background: var(--off-white); }

/* Carousel */
.carousel-wrap {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.store-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: box-shadow var(--t-fast);
}
.store-card:hover { box-shadow: var(--shadow-md); }
.store-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.store-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.store-card:hover .store-card-img img { transform: scale(1.04); }
.store-card-body {
  padding: 20px;
}
.store-card-zone {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.store-card-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.store-card-address { font-size: 0.82rem; color: var(--muted); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.carousel-btn {
  width: 42px; height: 42px;
  border: 1.5px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  font-size: 1rem;
  border-radius: 50%;
  transition: all var(--t-fast);
  cursor: pointer;
}
.carousel-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.carousel-dots { display: flex; gap: 6px; align-items: center; }
.carousel-dot {
  width: 7px; height: 7px;
  background: var(--sand);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
}
.carousel-dot.active {
  background: var(--black);
  transform: scale(1.3);
}

/* ══════════════════════════════════════════════════════════════════════════
   SECCIÓN: ENTRAR, PROBAR, QUEDARSE (Desembarco en Chile)
══════════════════════════════════════════════════════════════════════════ */
.chile-section { background: var(--white); }

.chile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.roadmap {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}
.roadmap-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}
.roadmap-step:last-child { padding-bottom: 0; }
.roadmap-step::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: var(--sand);
}
.roadmap-step:last-child::before { display: none; }
.step-num {
  width: 40px; height: 40px;
  background: var(--black);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-body h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}
.step-body p { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }

.chile-right img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECCIÓN: UNA EXPANSIÓN CONSTRUIDA (Expansión Construida)
══════════════════════════════════════════════════════════════════════════ */
.expansion-section {
  background: var(--black);
  color: var(--white);
  padding: var(--section-y) 0;
  text-align: center;
}
.expansion-section .eyebrow { color: var(--gold-light); }
.expansion-section .section-title { color: var(--white); max-width: 760px; margin: 0 auto 24px; }
.expansion-section .section-title em { color: var(--gold-light); }
.expansion-section .section-lead { color: rgba(255,255,255,0.65); margin: 0 auto 48px; }

.expansion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 56px;
}
.expansion-item {
  background: var(--black);
  padding: 40px 28px;
  text-align: left;
  transition: background var(--t-fast);
}
.expansion-item:hover { background: #1e1e1e; }
.expansion-item-icon { font-size: 1.5rem; margin-bottom: 16px; }
.expansion-item-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.expansion-item-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════════════════
   SECCIÓN: FRANQUICIAS (CTA solo)
══════════════════════════════════════════════════════════════════════════ */
.franchise-section { background: var(--cream); text-align: center; }
.franchise-inner {
  max-width: 700px;
  margin: 0 auto;
}
.franchise-section .section-title { margin-bottom: 16px; }
.franchise-section .section-lead { margin: 0 auto 36px; }
.franchise-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════════════════
   SECCIÓN: CONTACTO
══════════════════════════════════════════════════════════════════════════ */
.contact-section { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info .section-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.contact-info p { font-size: 0.95rem; color: var(--mid); line-height: 1.8; margin-bottom: 32px; }

.contact-bullets { display: flex; flex-direction: column; gap: 20px; }
.bullet-item { display: flex; gap: 16px; align-items: flex-start; }
.bullet-check {
  width: 22px; height: 22px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.bullet-text h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.bullet-text p { font-size: 0.85rem; color: var(--muted); }

/* Contact form */
.contact-form-card {
  background: var(--off-white);
  border: 1px solid var(--sand);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
}
.form-input, .form-select, .form-textarea {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--sand);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--black);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-notice {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: 1.5px solid var(--black);
  cursor: pointer;
  transition: all var(--t-fast);
}
.form-submit:hover { background: var(--gold); border-color: var(--gold); }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.form-success p { font-size: 0.95rem; color: var(--mid); }

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .statement-layout,
  .ecosystem-intro,
  .consumer-layout,
  .credentials-layout,
  .chile-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .credentials-layout .credentials-visual { order: -1; }
  .consumer-layout .consumer-image { order: -1; }

  .store-card { flex: 0 0 calc(50% - 10px); }

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

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

@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 24px var(--pad-x);
    border-bottom: 1px solid var(--sand);
    gap: 20px;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .mobile-toggle { display: flex; }
  .header-cta .btn { display: none; }

  .hero-title { font-size: 2.4rem; }
  .hero-metrics { gap: 24px; }

  .store-card { flex: 0 0 calc(85% - 10px); }

  .ecosystem-channels { grid-template-columns: 1fr; }
  .expansion-grid { grid-template-columns: 1fr; }

  .catalog-tabs { width: 100%; flex-wrap: wrap; }
  .tab-btn { flex: 1; text-align: center; font-size: 0.68rem; padding: 10px 12px; }

  .products-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }

  .consumer-stats { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

@media (max-width: 480px) {
  :root { --section-y: 48px; }
  .hero-metrics { flex-direction: column; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .carousel-controls { gap: 8px; }
  .catalog-tabs { border: none; flex-direction: column; }
  .tab-btn { border: 1px solid var(--sand); }
}

/* ─── Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) forwards;
}
.fade-up[data-delay="1"] { animation-delay: 0.1s; }
.fade-up[data-delay="2"] { animation-delay: 0.2s; }
.fade-up[data-delay="3"] { animation-delay: 0.3s; }
.fade-up[data-delay="4"] { animation-delay: 0.4s; }
.fade-up[data-delay="5"] { animation-delay: 0.5s; }

/* ─── IntersectionObserver trigger ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
