/* ===================================================
   EL GENIO FERRETERO — Grupo Aljoundi
   Premium Hardware Brand · Venezuela
   =================================================== */

:root {
  --negro: #212322;
  --negro-d: #141514;
  --amarillo: #FFEC51;
  --blanco: #EEEFF1;
  --gris: #969696;
  --gris-dk: #2c2e2d;
  --gris-md: #383a39;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--negro);
  color: var(--blanco);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
}
body.loaded { opacity: 1; }
img { max-width: 100%; display: block; }

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 10000;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--amarillo), #ffe082, var(--amarillo));
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(255,236,81,0.5);
}

/* === CURSOR GLOW === */
.cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,236,81,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}
body.loaded .cursor-glow { opacity: 1; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background: rgba(33,35,34,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,236,81,0.08);
  transition: height 0.4s var(--ease-smooth), background 0.4s, border-color 0.3s, box-shadow 0.4s;
}
nav.nav-scrolled {
  height: 58px;
  background: rgba(20,21,20,0.97);
  border-bottom-color: rgba(255,236,81,0.25);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo img {
  height: 120px; width: auto; object-fit: contain;
  transition: height 0.4s var(--ease-smooth);
}
nav.nav-scrolled .nav-logo img { height: 80px; }
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blanco); text-decoration: none; opacity: 0.45;
  transition: opacity 0.3s, color 0.3s, transform 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--amarillo); transition: width 0.3s var(--ease-smooth);
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--amarillo); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--amarillo) !important; color: var(--negro) !important;
  opacity: 1 !important; padding: 10px 26px; font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blanco) !important; transform: translateY(-2px); }

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--blanco);
  position: absolute; left: 0;
  transition: transform 0.3s var(--ease-smooth), opacity 0.2s, top 0.3s var(--ease-smooth);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
nav.nav-open .nav-toggle span:nth-child(1) { top: 9px; transform: rotate(45deg); background: var(--amarillo); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { top: 9px; transform: rotate(-45deg); background: var(--amarillo); }

/* === HERO === */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 55% 45%;
  padding-top: 72px; position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 160px 72px; position: relative; z-index: 2;
}
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.eyebrow-line { width: 32px; height: 2px; background: var(--amarillo); flex-shrink: 0; }
.eyebrow-text { font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--amarillo); }
.hero-h1 {
  font-family: Impact, 'Arial Narrow', sans-serif;
  font-size: clamp(64px, 8vw, 118px); line-height: 0.87; color: var(--blanco);
}
.hero-h1 .typewriter {
  display: block; min-height: 1.1em;
  color: var(--blanco);
  border-right: 3px solid var(--blanco);
  animation: blink-caret 0.75s step-end infinite;
}
.hero-h1 .acc {
  display: block;
  color: var(--amarillo);
}
@keyframes blink-caret { 0%, 100% { border-color: var(--amarillo); } 50% { border-color: transparent; } }
.hero-h1 .out { -webkit-text-stroke: 2px rgba(238,239,241,0.3); color: transparent; display: block; }
.hero-desc {
  font-size: 14px; font-weight: 300; color: var(--gris); line-height: 1.8;
  max-width: 380px; margin: 28px 0 44px;
}
.hero-desc strong { color: var(--amarillo); font-weight: 700; }
.hero-btns { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.btn-p {
  background: var(--amarillo); color: var(--negro);
  padding: 15px 36px; font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s var(--ease-smooth); display: inline-block;
  position: relative; overflow: hidden;
}
.btn-p::before {
  content: ''; position: absolute; inset: 0;
  background: var(--blanco); transform: translateX(-101%);
  transition: transform 0.4s var(--ease-smooth);
}
.btn-p:hover::before { transform: translateX(0); }
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,236,81,0.3); }
.btn-g {
  color: var(--blanco); font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  padding-bottom: 3px; border-bottom: 1px solid rgba(238,239,241,0.2);
  transition: all 0.3s var(--ease-smooth);
}
.btn-g:hover { color: var(--amarillo); border-color: var(--amarillo); }

/* Hero right */
.hero-right {
  position: relative; display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; background: var(--negro-d);
}
.h-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,236,81,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,236,81,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.h-diag {
  position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(-45deg, var(--amarillo) 0, var(--amarillo) 5px, transparent 5px, transparent 13px);
  opacity: 0.3;
}
.h-fade {
  position: absolute; left: 0; top: 0; bottom: 0; width: 80px;
  background: linear-gradient(to right, var(--negro-d), transparent);
  z-index: 2; pointer-events: none;
}
.genio-img {
  position: relative; z-index: 3;
  width: 96%; max-width: 560px;
  animation: flotar 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4));
  margin-bottom: -4px;
}
@keyframes flotar { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.h-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 300px; height: 110px;
  background: radial-gradient(ellipse, rgba(255,236,81,0.15) 0%, transparent 70%);
  z-index: 2;
}
.h-badge {
  position: absolute; top: 44px; left: 44px; z-index: 5;
  background: var(--amarillo); color: var(--negro);
  padding: 9px 18px; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  animation: popin 0.5s var(--ease-spring) 0.7s both;
}
@keyframes popin { from { transform: scale(0) rotate(-6deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }

/* Hero stats */
.hero-stats {
  position: absolute; bottom: 48px; left: 72px;
  display: flex; gap: 48px; z-index: 3;
}
.stn { font-family: Impact, sans-serif; font-size: 48px; color: var(--amarillo); line-height: 1; display: block; }
.stl { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gris); display: block; margin-top: 4px; }

/* === TICKER === */
.ticker { background: var(--amarillo); padding: 12px 0; overflow: hidden; }
.ticker:hover .ticker-t { animation-play-state: paused; }
.ticker-t { display: flex; width: max-content; animation: tick 36s linear infinite; }
.ti {
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--negro); padding: 0 44px; white-space: nowrap;
  display: flex; align-items: center; gap: 44px;
}
.ti::after { content: '◆'; font-size: 7px; opacity: 0.3; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === SHARED LABELS === */
.ltag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.ltag::before { content: ''; width: 22px; height: 2px; display: block; }
.ltag-dark { color: var(--amarillo); }
.ltag-dark::before { background: var(--amarillo); }
.ltag-light { color: var(--negro); opacity: 0.5; }
.ltag-light::before { background: var(--negro); opacity: 0.5; }
.sh-dark {
  font-family: Impact, sans-serif; font-size: clamp(40px, 5vw, 66px);
  line-height: 0.93; color: var(--blanco); margin-bottom: 22px;
}
.sh-dark .y { color: var(--amarillo); }
.sh-light {
  font-family: Impact, sans-serif; font-size: clamp(40px, 5vw, 66px);
  line-height: 0.93; color: var(--negro); margin-bottom: 22px;
}
.sh-outline { -webkit-text-stroke: 2px var(--negro); color: transparent; }

/* === DIAGONAL STRIPES === */
.stripe-top, .stripe-bot {
  width: 100%; height: 12px;
  background: repeating-linear-gradient(-45deg, var(--amarillo) 0, var(--amarillo) 6px, var(--negro) 6px, var(--negro) 14px);
  opacity: 0.35;
}
.stripe-top-light {
  width: 100%; height: 12px;
  background: repeating-linear-gradient(-45deg, var(--negro) 0, var(--negro) 6px, transparent 6px, transparent 14px);
  opacity: 0.08;
}
.diag-top, .diag-bot {
  width: 100%; height: 10px;
  background: repeating-linear-gradient(-45deg, rgba(0,0,0,0.12) 0, rgba(0,0,0,0.12) 6px, transparent 6px, transparent 14px);
}

/* === MISIÓN VISIÓN === */
.mv-band {
  background: var(--amarillo); padding: 88px 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  position: relative;
}
.mv-lbl { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(33,35,34,0.4); margin-bottom: 8px; }
.mv-h { font-family: Impact, sans-serif; font-size: 42px; color: var(--negro); line-height: 1; margin-bottom: 16px; }
.mv-p { font-size: 14px; font-weight: 300; color: rgba(33,35,34,0.65); line-height: 1.8; }

/* === HISTORIA === */
.historia-sec { background: var(--negro); padding: 100px 72px; }
.historia-desc {
  font-size: 14px; font-weight: 300; color: var(--gris); line-height: 1.85;
  max-width: 600px; margin-bottom: 8px;
}
.historia-desc strong { color: var(--blanco); font-weight: 600; }
.tl { margin-top: 40px; border-top: 1px solid rgba(238,239,241,0.06); max-width: 680px; }
.tli {
  display: grid; grid-template-columns: 72px 1fr; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid rgba(238,239,241,0.06);
  transition: background 0.3s var(--ease-smooth), padding-left 0.3s;
}
.tli:hover { background: rgba(255,236,81,0.03); padding-left: 12px; }
.tly {
  font-family: Impact, sans-serif; font-size: 30px; color: var(--amarillo);
  opacity: 0.25; line-height: 1; padding-top: 2px;
  transition: opacity 0.3s;
}
.tli:hover .tly { opacity: 1; }
.tlt { font-size: 13px; font-weight: 300; color: var(--gris); line-height: 1.65; }
.tlt strong { color: var(--blanco); font-weight: 600; }

/* === TIENDAS === */
.tiendas-sec { background: var(--negro); padding: 100px 72px; }
.tiendas-intro { max-width: 560px; margin-bottom: 60px; }
.tiendas-desc { font-size: 14px; font-weight: 300; color: var(--gris); line-height: 1.8; }
.tiendas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,236,81,0.06); }
.tc {
  background: var(--negro); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: background 0.3s var(--ease-smooth), transform 0.3s;
  border: 1px solid rgba(255,236,81,0.06);
}
.tc:hover { background: #1e201f; transform: translateY(-2px); }
.tc::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--amarillo); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s var(--ease-smooth);
}
.tc:hover::before { transform: scaleY(1); }
.tc-num {
  font-family: Impact, sans-serif; font-size: 56px; color: rgba(255,236,81,0.06);
  line-height: 1; margin-bottom: 16px; transition: color 0.3s;
}
.tc:hover .tc-num { color: rgba(255,236,81,0.15); }
.tc-name { font-size: 15px; font-weight: 700; color: var(--blanco); margin-bottom: 8px; line-height: 1.3; }
.tc-addr { font-size: 12px; font-weight: 300; color: var(--gris); line-height: 1.6; }
.tc-tag {
  display: inline-block; margin-top: 14px;
  font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--amarillo); opacity: 0.6;
}

/* Tienda CTA card */
.tc-cta {
  background: var(--amarillo) !important; border-color: var(--amarillo) !important;
}
.tc-cta::before { display: none; }
.tc-cta-icon { font-size: 28px; margin-bottom: 12px; }
.tc-cta-title { font-family: Impact, sans-serif; font-size: 22px; color: var(--negro); margin-bottom: 8px; }
.tc-cta-text { font-size: 12px; color: rgba(33,35,34,0.6); margin-bottom: 16px; }
.tc-cta-link {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--negro); text-decoration: none;
  border-bottom: 2px solid var(--negro); padding-bottom: 2px;
  transition: opacity 0.3s;
}
.tc-cta-link:hover { opacity: 0.7; }

/* === VALORES === */
.val-sec { background: var(--gris-dk); padding: 100px 72px; }
.vgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 52px; }
.vc {
  background: var(--gris-md); padding: 40px 28px;
  position: relative; overflow: hidden;
  transition: background 0.3s var(--ease-smooth), transform 0.3s;
}
.vc:hover { background: #404240; transform: translateY(-3px); }
.vc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--amarillo); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.vc:hover::after { transform: scaleX(1); }
.vi { font-size: 28px; margin-bottom: 18px; display: block; transition: transform 0.3s var(--ease-spring); }
.vc:hover .vi { transform: scale(1.2); }
.vn { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--amarillo); margin-bottom: 10px; }
.vt { font-size: 12px; font-weight: 300; color: var(--gris); line-height: 1.7; }

/* === PRODUCTOS === */
.prod-sec { background: var(--blanco); padding: 100px 72px; }
.pgrid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  margin-top: 52px; background: rgba(33,35,34,0.06);
}
.pc {
  background: var(--blanco); padding: 34px 26px;
  position: relative; overflow: hidden;
  transition: background 0.3s var(--ease-smooth), transform 0.3s;
  border: 1px solid rgba(33,35,34,0.06);
}
.pc:hover { background: #e4e5e7; transform: translateY(-3px); }
.pc::after {
  content: ''; position: absolute; left: 0; bottom: 0; right: 0; height: 3px;
  background: var(--negro); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.pc:hover::after { transform: scaleX(1); }
.pi { font-size: 28px; display: block; margin-bottom: 14px; transition: transform 0.3s var(--ease-spring); }
.pc:hover .pi { transform: scale(1.15) rotate(-5deg); }
.pn { font-size: 13px; font-weight: 700; color: var(--negro); margin-bottom: 7px; line-height: 1.3; }
.pd { font-size: 11px; font-weight: 300; color: rgba(33,35,34,0.5); line-height: 1.65; }
.pnum {
  position: absolute; top: 10px; right: 14px;
  font-family: Impact, sans-serif; font-size: 44px; color: rgba(33,35,34,0.04);
  line-height: 1; transition: color 0.3s;
}
.pc:hover .pnum { color: rgba(33,35,34,0.08); }

/* === CTA === */
.cta {
  background: var(--amarillo); padding: 100px 72px;
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-tornillo {
  position: absolute; right: 120px; top: 50%; transform: translateY(-50%);
  height: 80%; width: auto; opacity: 0.12; object-fit: contain;
  pointer-events: none;
}
.cta-h {
  font-family: Impact, sans-serif; font-size: clamp(44px,5.5vw,88px);
  line-height: 0.9; color: var(--negro); position: relative; z-index: 2;
}
.cta-p {
  font-size: 15px; font-weight: 300; color: rgba(33,35,34,0.55);
  margin-top: 16px; max-width: 460px; line-height: 1.75;
  position: relative; z-index: 2;
}
.cta-a {
  background: var(--negro); color: var(--amarillo);
  padding: 22px 52px; font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none;
  white-space: nowrap; display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s var(--ease-smooth); position: relative; z-index: 2;
}
.cta-a:hover { background: #141514; transform: scale(1.04); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

/* === MARCAS === */
.marcas { background: var(--negro-d); padding: 80px 72px; text-align: center; }
.mrow { display: flex; align-items: center; justify-content: center; gap: 64px; flex-wrap: wrap; margin-top: 48px; }
.marca {
  font-family: Impact, sans-serif; font-size: 20px; letter-spacing: 3px;
  color: rgba(238,239,241,0.1); cursor: default;
  transition: color 0.4s var(--ease-smooth), transform 0.3s var(--ease-spring),
    text-shadow 0.4s;
}
.marca:hover {
  color: var(--amarillo); transform: scale(1.12);
  text-shadow: 0 0 20px rgba(255,236,81,0.3);
}

/* === CONTACTO === */
.contacto {
  background: var(--gris-dk); padding: 100px 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.ct-h {
  font-family: Impact, sans-serif; font-size: clamp(38px,5vw,62px);
  line-height: 0.93; color: var(--blanco);
}
.ct-h .y { color: var(--amarillo); }
.ct-p { font-size: 14px; font-weight: 300; color: var(--gris); margin-top: 16px; line-height: 1.75; }
.cinfo { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.cir { display: flex; align-items: center; gap: 14px; }
.cir-icon { font-size: 15px; }
.cir-text { font-size: 13px; color: var(--blanco); }
.cir-text a { color: var(--amarillo); text-decoration: none; transition: opacity 0.3s; }
.cir-text a:hover { text-decoration: underline; }
.form { display: flex; flex-direction: column; gap: 12px; }
.frow { display: flex; }
.fin {
  flex: 1; background: var(--gris-md); border: 1px solid rgba(238,239,241,0.07);
  border-right: none; color: var(--blanco); padding: 16px 20px;
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 300;
  outline: none; transition: border-color 0.3s, box-shadow 0.3s;
}
.fin::placeholder { color: rgba(150,150,150,0.3); }
.fin:focus { border-color: var(--amarillo); box-shadow: 0 0 0 1px rgba(255,236,81,0.2); }
.fbtn {
  background: var(--amarillo); color: var(--negro); border: none;
  padding: 16px 28px; font-family: 'Poppins', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: all 0.3s var(--ease-smooth);
}
.fbtn:hover { background: var(--blanco); }
.fnote { font-size: 10px; font-weight: 300; color: rgba(150,150,150,0.3); }
.form-success {
  font-size: 13px; font-weight: 600; color: var(--amarillo);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.form-success.show { opacity: 1; transform: translateY(0); }

/* === FOOTER === */
footer {
  background: var(--negro-d); border-top: 3px solid var(--amarillo);
  padding: 60px 72px 36px; position: relative;
}
.fg {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(238,239,241,0.04);
}
.flogo { height: 64px; margin-bottom: 16px; display: block; object-fit: contain; }
.ftag { font-size: 12px; font-weight: 300; color: var(--gris); line-height: 1.8; max-width: 220px; }
.fch { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--amarillo); margin-bottom: 16px; }
.fl { list-style: none; }
.fl li { margin-bottom: 9px; }
.fl a {
  font-size: 12px; font-weight: 300; color: var(--gris); text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}
.fl a:hover { color: var(--blanco); padding-left: 6px; }
.fb { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.fc { font-size: 10px; font-weight: 300; color: rgba(150,150,150,0.3); }
.fc a { color: var(--amarillo); opacity: 0.6; text-decoration: none; transition: opacity 0.3s; }
.fc a:hover { opacity: 1; }

/* === WHATSAPP === */
.wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 25px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s var(--ease-spring);
  animation: wap 3s ease-in-out infinite;
}
.wa:hover { transform: scale(1.12); }
@keyframes wap {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.65); }
}

/* === PARALLAX === */
.parallax { transition: transform 0.1s linear; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  nav { padding: 0 28px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 420px; }
  .hero-left { padding: 72px 36px 56px; }
  .hero-stats { position: relative; left: auto; bottom: auto; padding: 32px 36px; gap: 36px; }
  .h-badge { top: 16px; left: 16px; }
  .mv-band { grid-template-columns: 1fr; padding: 60px 36px; gap: 40px; }
  .historia-sec { padding: 72px 36px; }
  .tiendas-grid { grid-template-columns: repeat(2,1fr); }
  .vgrid, .pgrid { grid-template-columns: repeat(2,1fr); }
  .cta { grid-template-columns: 1fr; padding: 72px 36px; }
  .contacto { grid-template-columns: 1fr; gap: 40px; padding: 72px 36px; }
  .fg { grid-template-columns: 1fr 1fr; gap: 36px; }
  .tiendas-sec, .val-sec, .prod-sec, .marcas { padding: 72px 36px; }
  footer { padding: 56px 36px 32px; }
}

@media (max-width: 640px) {
  /* NAV MOBILE */
  nav { height: 60px; padding: 0 20px; }
  nav.nav-scrolled { height: 52px; }
  .nav-logo img { height: 42px; }
  nav.nav-scrolled .nav-logo img { height: 34px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 280px; background: var(--negro-d);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 32px; padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-smooth);
    border-left: 2px solid rgba(255,236,81,0.1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  nav.nav-open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 14px; opacity: 0.8; letter-spacing: 3px; }
  .nav-cta { margin-top: 16px; padding: 14px 32px !important; }

  /* HERO MOBILE */
  .hero { padding-top: 60px; }
  .hero-left { padding: 48px 20px 36px; }
  .hero-h1 { font-size: 44px; }
  .hero-right { min-height: 350px; }
  .hero-stats { gap: 24px; padding: 24px 20px; }
  .h-badge { font-size: 8px; padding: 7px 12px; top: 10px; left: 10px; }
  .genio-img { width: 70%; max-width: 280px; }

  /* GRIDS */
  .tiendas-grid, .vgrid, .pgrid { grid-template-columns: 1fr; }
  .fg { grid-template-columns: 1fr; }
  .mrow { gap: 28px; }
  .fb { flex-direction: column; gap: 8px; text-align: center; }
}
