/* ================================================================
   AGENCIA 247 — publicidadOffline.css
   Estilo: gran marca / alto impacto / publicidad física
   Paleta corporativa: deep navy + vivid blue + sky
   @import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,700;1,400&family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,700;1,900&family=Barlow+Semi+Condensed:wght@400;500;600&display=swap');
================================================================ */

/* ────────────────────────────────────────────────────────────
   TOKENS
──────────────────────────────────────────────────────────── */
:root {
  --c-deep:    #060c1c;
  --c-navy:    #0b1528;
  --c-blue:    #1e46d8;
  --c-vivid:   #2353e8;
  --c-sky:     #5bc8f5;
  --c-white:   #ffffff;
  --c-muted:   rgba(255,255,255,0.45);
  --c-rim:     rgba(255,255,255,0.09);
  --c-glass:   rgba(255,255,255,0.055);
  --c-glassmd: rgba(255,255,255,0.10);

  --g-accent:  linear-gradient(100deg, var(--c-vivid) 0%, var(--c-sky) 70%);
  --g-dark:    linear-gradient(180deg, var(--c-deep) 0%, var(--c-navy) 100%);

  --sh-blue:   0 8px 40px rgba(35,83,232,0.45);
  --sh-sky:    0 0 80px rgba(91,200,245,0.18);
  --sh-hover:  0 28px 64px rgba(0,0,0,0.50);

  --f-disp: 'Barlow Condensed', sans-serif;
  --f-semi: 'Barlow Semi Condensed', sans-serif;
  --f-body: 'Barlow', sans-serif;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 100px;

  --ease:       cubic-bezier(0.16,1,0.3,1);
  --ease-back:  cubic-bezier(0.34,1.56,0.64,1);
  --ease-circ:  cubic-bezier(0.85,0,0.15,1);
}

/* ────────────────────────────────────────────────────────────
   RESET + BASE
──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--c-deep);
  color: var(--c-white);
  font-family: var(--f-body);
  overflow-x: hidden;
  cursor: none;
}
img   { display: block; max-width: 100%; height: auto; }
a     { text-decoration: none; color: inherit; }
button{ cursor: none; border: none; background: none; }

/* ────────────────────────────────────────────────────────────
   CURSOR PERSONALIZADO
──────────────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-white);
  transform: translate(-50%,-50%);
  transition: transform 0.1s var(--ease);
}
.cursor__ring {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.65);
  transform: translate(-50%,-50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.35s;
}
.cursor--hover .cursor__ring {
  width: 64px; height: 64px;
  border-color: var(--c-sky);
}
.cursor--hover .cursor__dot { transform: translate(-50%,-50%) scale(0); }

/* ────────────────────────────────────────────────────────────
   LAYOUT
──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 5rem;
}

/* ────────────────────────────────────────────────────────────
   BARRA DE PROGRESO
──────────────────────────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 9998;
  height: 2px; width: 0%;
  background: var(--g-accent);
  pointer-events: none;
}

/* ────────────────────────────────────────────────────────────
   SCROLL REVEAL
──────────────────────────────────────────────────────────── */
.reveal          { opacity: 0; transform: translateY(40px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-left     { opacity: 0; transform: translateX(-50px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-scale    { opacity: 0; transform: scale(0.88); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.in, .reveal-left.in, .reveal-scale.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.34s; }
.d4 { transition-delay: 0.48s; }

/* ────────────────────────────────────────────────────────────
   EYEBROW
──────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--f-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-sky);
  background: rgba(91,200,245,0.08);
  border: 1px solid rgba(91,200,245,0.22);
  padding: 0.35rem 1rem; border-radius: var(--r-pill);
}
.eyebrow::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-sky); animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,100% { box-shadow: 0 0 0 0 rgba(91,200,245,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(91,200,245,0); }
}

/* Botones */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--f-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  background: var(--c-vivid); color: var(--c-white);
  border-radius: var(--r-pill); padding: 1rem 2.8rem;
  box-shadow: var(--sh-blue);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover { background: #1535b0; transform: translateY(-3px); box-shadow: 0 16px 44px rgba(35,83,232,0.6); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--c-sky); border: 1px solid rgba(91,200,245,0.35);
  border-radius: var(--r-pill); padding: 0.95rem 2.4rem;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.btn-ghost:hover { background: rgba(91,200,245,0.08); border-color: rgba(91,200,245,0.65); transform: translateY(-2px); }


/* ════════════════════════════════════════════
   1. HERO — PANTALLA COMPLETA TIPOGRAFÍA GIGANTE
   Inspirado en campañas de gran marca:
   imagen de fondo + texto enorme centrado + partículas
════════════════════════════════════════════ */
.s-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  overflow: hidden;
  text-align: center;
}

/* Fondo imagen + oscurecimiento */
.s-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.s-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.25) saturate(0.5);
  transform: scale(1.06);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14); }
}
.s-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(35,83,232,0.22) 0%, transparent 65%),
    linear-gradient(180deg, rgba(6,12,28,0.30) 0%, rgba(6,12,28,0.70) 80%, var(--c-deep) 100%);
}

/* Canvas de partículas */
#particles-canvas {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}

/* Contenido hero */
.s-hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.6rem;
}

/* Línea superior decorativa */
.s-hero__line-deco {
  width: 60px; height: 2px;
  background: var(--g-accent);
  margin: 0 auto;
  animation: heroFade 0.8s var(--ease) both 0.2s;
}

/* Headline principal — ENORME */
.s-hero__title {
  font-family: var(--f-disp);
  font-size: clamp(4.5rem, 11vw, 13rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.88;
  color: var(--c-white);
  animation: heroFade 0.9s var(--ease) both 0.35s;
}
.s-hero__title em {
  font-style: italic;
  background: var(--g-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Subtítulo — minimalista */
.s-hero__sub {
  font-family: var(--f-semi);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  max-width: 520px;
  animation: heroFade 0.9s var(--ease) both 0.55s;
}

.s-hero__cta {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: heroFade 0.9s var(--ease) both 0.70s;
}

/* Indicador scroll */
.s-hero__scroll {
  position: absolute; bottom: clamp(0.7rem, 2.2vh, 1.4rem); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  width: max-content;
  text-align: center;
  pointer-events: none;
  z-index: 2;
  animation: heroFade 1s var(--ease) both 1s;
}
.s-hero__scroll span {
  font-family: var(--f-body); font-size: 0.60rem; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--c-muted);
}
.s-hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.8s ease infinite;
}
@keyframes scrollPulse {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}


/* ════════════════════════════════════════════
   2. STATEMENT — frase de impacto full width
   Texto monstruoso + imagen lateral
════════════════════════════════════════════ */
.s-statement {
  position: relative;
  overflow: hidden;
  background: var(--c-navy);
  min-height: 60vh;
  display: flex; align-items: center;
}
/* Imagen de fondo desaturada, mitad derecha */
.s-statement__img {
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  overflow: hidden;
}
.s-statement__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.35) saturate(0.4);
}
.s-statement__img::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 60%;
  background: linear-gradient(to right, var(--c-navy) 0%, transparent 100%);
  z-index: 1;
}
/* Número decorativo gigante */
.s-statement__num {
  position: absolute; right: 3rem; bottom: -2rem;
  font-family: var(--f-disp);
  font-size: clamp(10rem, 18vw, 22rem);
  font-weight: 900; line-height: 1;
  color: rgba(35,83,232,0.06);
  pointer-events: none; user-select: none;
  letter-spacing: -0.05em; z-index: 0;
}
.s-statement__inner {
  position: relative; z-index: 2;
  padding: 6rem 0;
  max-width: 800px;
}
.s-statement__claim {
  font-family: var(--f-disp);
  font-size: clamp(3rem, 6.5vw, 7.5rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.025em; line-height: 0.90;
  color: var(--c-white);
}
.s-statement__claim em {
  display: block; font-style: italic;
  background: var(--g-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.s-statement__body {
  margin-top: 2rem;
  font-family: var(--f-semi);
  font-size: 1.05rem; line-height: 1.80;
  color: var(--c-muted); max-width: 440px;
  border-left: 2px solid rgba(91,200,245,0.25); padding-left: 1.4rem;
}
.s-statement__body strong { color: rgba(255,255,255,0.82); font-weight: 600; }


/* ════════════════════════════════════════════
   3. MARQUEE — MATERIALES EN MOVIMIENTO
════════════════════════════════════════════ */
.s-marquee {
  overflow: hidden;
  background: var(--c-vivid);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.s-marquee__track {
  display: flex; width: max-content;
  animation: marqueeRun 32s linear infinite;
}
.s-marquee__item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 0 2.8rem;
  font-family: var(--f-disp); font-size: 1rem;
  font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); white-space: nowrap;
}
.s-marquee__item::before { content: '◆'; font-size: 0.4rem; color: var(--c-sky); }
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.s-marquee:hover .s-marquee__track { animation-play-state: paused; }


/* ════════════════════════════════════════════
   4. GRID DE PRODUCTOS — ESTILO CARTEL GRANDE
   Imágenes grandes, texto mínimo encima
════════════════════════════════════════════ */
.s-products {
  padding: 8rem 0;
  background: var(--c-deep);
  position: relative; overflow: hidden;
}
/* Líneas de fondo sutiles */
.s-products::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(91,200,245,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,200,245,0.025) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none;
}
.s-products__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem; position: relative; z-index: 1;
}
.s-products__title {
  font-family: var(--f-disp);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.03em; line-height: 0.90;
  color: var(--c-white);
}
.s-products__title em {
  font-style: italic;
  background: var(--g-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Grid tipo masonry editorial — 3 cols irregulares */
.products-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 380px 280px;
  gap: 8px;
  position: relative; z-index: 1;
}
.prod-item {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--c-navy); cursor: none;
}
/* Grande — fila 1 col 1, span 2 rows */
.prod-item--hero { grid-row: span 2; }
/* Wide — fila 1 col 2-3 */
.prod-item--wide { grid-column: span 2; }

.prod-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.60) saturate(0.70);
  transition: transform 0.90s var(--ease), filter 0.60s;
}
.prod-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.75) saturate(0.85);
}
/* Overlay degradado */
.prod-item__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(6,12,28,0.96) 0%, rgba(6,12,28,0.40) 45%, transparent 75%);
  transition: background 0.45s;
}
.prod-item:hover .prod-item__overlay {
  background: linear-gradient(to top, rgba(6,12,28,0.98) 0%, rgba(6,12,28,0.50) 55%, transparent 80%);
}
/* Borde acento — aparece en hover */
.prod-item::before {
  content: '';
  position: absolute; inset: 0; z-index: 3;
  border: 2px solid rgba(91,200,245,0);
  border-radius: var(--r-lg);
  transition: border-color 0.4s var(--ease);
  pointer-events: none;
}
.prod-item:hover::before { border-color: rgba(91,200,245,0.35); }

/* Texto del card */
.prod-item__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.2rem 2rem;
  z-index: 2;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
}
.prod-item:hover .prod-item__body { transform: none; }
.prod-item__cat {
  display: block; font-family: var(--f-body);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--c-sky); margin-bottom: 0.4rem;
}
.prod-item__name {
  font-family: var(--f-disp);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.02em; line-height: 0.94;
  color: var(--c-white); margin-bottom: 0.6rem;
}
.prod-item--hero .prod-item__name { font-size: clamp(2.2rem, 3.5vw, 3.8rem); }
.prod-item__desc {
  font-family: var(--f-body); font-size: 0.88rem; line-height: 1.70;
  color: var(--c-muted);
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s;
  opacity: 0;
}
.prod-item:hover .prod-item__desc { max-height: 80px; opacity: 1; }
/* Número decorativo esquina superior derecha */
.prod-item__num {
  position: absolute; top: 1.2rem; right: 1.5rem; z-index: 2;
  font-family: var(--f-disp); font-size: 3.5rem; font-weight: 900;
  line-height: 1; color: rgba(255,255,255,0.06);
  transition: color 0.35s;
}
.prod-item:hover .prod-item__num { color: rgba(91,200,245,0.12); }


/* ════════════════════════════════════════════
   5. FEATURE — bloque impacto full width
   Stat grande + imagen enorme de fondo
════════════════════════════════════════════ */
.s-feature {
  position: relative; overflow: hidden;
  height: 72vh; min-height: 520px;
  display: flex; align-items: center;
}
.s-feature__bg { position: absolute; inset: 0; }
.s-feature__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.22) saturate(0.45);
}
.s-feature__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 60%, rgba(35,83,232,0.28) 0%, transparent 60%),
    linear-gradient(90deg, rgba(6,12,28,0.85) 0%, rgba(6,12,28,0.20) 55%, transparent 100%);
}
.s-feature__inner {
  position: relative; z-index: 2;
}
/* Stats en fila horizontal */
.s-feature__stats {
  display: grid; grid-template-columns: repeat(3,auto);
  gap: 0; width: max-content;
}
.s-feature__stat {
  padding: 0 4rem 0 0;
  border-right: 1px solid var(--c-rim);
  margin-right: 4rem;
}
.s-feature__stat:last-child { border-right: none; margin-right: 0; }
.s-feature__stat-num {
  display: block; font-family: var(--f-disp);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(110deg, #fff 35%, var(--c-sky));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.s-feature__stat-label {
  font-family: var(--f-semi); font-size: 0.85rem;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--c-muted); margin-top: 0.3rem; display: block;
}
/* Claim al lado */
.s-feature__claim {
  margin-top: 3.5rem;
  font-family: var(--f-disp);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.02em; line-height: 0.94;
  color: var(--c-white); max-width: 580px;
}
.s-feature__claim em {
  font-style: italic;
  background: var(--g-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}


/* ════════════════════════════════════════════
   6. GALERÍA — TIRA HORIZONTAL CON SCROLL
   Cards grandes en fila scrolleable
════════════════════════════════════════════ */
.s-gallery {
  padding: 8rem 0;
  background:
    radial-gradient(ellipse 60% 55% at 90% 10%, rgba(91,200,245,0.09) 0%, transparent 58%),
    var(--c-navy);
  overflow: hidden;
}
.s-gallery__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; padding: 0 5rem;
}
.s-gallery__title {
  font-family: var(--f-disp);
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.025em; line-height: 0.92;
  color: var(--c-white);
}
.s-gallery__title em {
  font-style: italic;
  background: var(--g-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
/* Tira scrolleable horizontal */
.gallery-strip {
  display: flex; gap: 10px;
  padding: 0 5rem;
  overflow-x: auto; overflow-y: visible;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip--dragging { cursor: grabbing; user-select: none; }

.gal-card {
  flex: 0 0 380px; height: 520px;
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); background: var(--c-deep);
  cursor: none;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.gal-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--sh-hover); }
.gal-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.65) saturate(0.72);
  transition: transform 0.80s var(--ease), filter 0.50s;
}
.gal-card:hover img { transform: scale(1.07); filter: brightness(0.75) saturate(0.85); }
.gal-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,12,28,0.96) 0%, rgba(6,12,28,0.25) 50%, transparent 100%);
}
.gal-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.2rem;
  transform: translateY(6px); transition: transform 0.35s var(--ease);
}
.gal-card:hover .gal-card__body { transform: none; }
.gal-card__cat {
  font-family: var(--f-body); font-size: 0.60rem; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--c-sky);
  display: block; margin-bottom: 0.4rem;
}
.gal-card__title {
  font-family: var(--f-disp); font-size: 1.85rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.95;
  color: var(--c-white);
}
/* Indicador drag */
.gallery-drag-hint {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--f-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-muted);
  padding: 0 5rem; margin-top: 1.8rem;
}
.gallery-drag-hint::before {
  content: ''; flex: 0 0 36px; height: 1px;
  background: linear-gradient(to right, var(--c-sky), transparent);
}


/* ════════════════════════════════════════════
   7. FILOSOFIA / QUOTE — texto grande centrado
   Sobre imagen de fondo, mínimo texto, máximo impacto
════════════════════════════════════════════ */
.s-quote {
  position: relative; overflow: hidden;
  min-height: 65vh; display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.s-quote__bg { position: absolute; inset: 0; }
.s-quote__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.20) saturate(0.40);
}
.s-quote__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 50%, rgba(35,83,232,0.22) 0%, transparent 65%),
    linear-gradient(180deg, var(--c-deep) 0%, transparent 15%, transparent 85%, var(--c-deep) 100%);
}
/* Anillo decorativo */
.s-quote::before {
  content: ''; position: absolute; z-index: 1;
  width: 700px; height: 700px; border-radius: 50%;
  border: 1px solid rgba(91,200,245,0.08);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  box-shadow: 0 0 0 100px rgba(91,200,245,0.02), 0 0 0 200px rgba(91,200,245,0.01);
}
.s-quote__inner { position: relative; z-index: 2; max-width: 1000px; padding: 0 2rem; }
.s-quote__text {
  font-family: var(--f-disp);
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.025em; line-height: 0.90;
  color: var(--c-white);
}
.s-quote__text em {
  font-style: italic;
  background: var(--g-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.s-quote__attr {
  margin-top: 2.5rem;
  font-family: var(--f-body); font-size: 0.80rem; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--c-muted);
}


/* ════════════════════════════════════════════
   8. CTA FINAL — ENORME + IMAGEN
════════════════════════════════════════════ */
.s-cta {
  position: relative; overflow: hidden;
  padding: 9rem 0; text-align: center;
}
.s-cta__bg { position: absolute; inset: 0; }
.s-cta__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.18) saturate(0.45);
}
.s-cta__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(35,83,232,0.22) 0%, transparent 65%),
    linear-gradient(180deg, rgba(6,12,28,0.65) 0%, rgba(6,12,28,0.75) 100%);
}
/* Anillo doble */
.s-cta__rings {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1; pointer-events: none;
}
.s-cta__rings span {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(35,83,232,0.12);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.s-cta__rings span:nth-child(1) { width: 500px; height: 500px; }
.s-cta__rings span:nth-child(2) { width: 700px; height: 700px; border-color: rgba(35,83,232,0.06); }
.s-cta__rings span:nth-child(3) { width: 900px; height: 900px; border-color: rgba(35,83,232,0.03); }
.s-cta__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
}
.s-cta__label {
  font-family: var(--f-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--c-sky);
  margin-bottom: 1.5rem;
}
.s-cta__title {
  font-family: var(--f-disp);
  font-size: clamp(3.5rem, 7vw, 9rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.03em; line-height: 0.88;
  color: var(--c-white); margin-bottom: 1.6rem;
}
.s-cta__title em {
  font-style: italic;
  background: var(--g-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.s-cta__sub {
  font-family: var(--f-semi); font-size: 1rem; line-height: 1.75;
  color: var(--c-muted); max-width: 480px; margin: 0 auto 3rem;
}
.s-cta__row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 3rem; }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px 280px;
  }
  .prod-item--hero { grid-row: span 1; }
  .prod-item--wide { grid-column: span 2; }
  .s-feature__stats { grid-template-columns: repeat(3,1fr); gap: 0; }
  .gallery-strip { padding: 0 3rem; }
  .s-gallery__head { padding: 0 3rem; }
  .gallery-drag-hint { padding: 0 3rem; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor { display: none; }
  .container { padding: 0 1.5rem; }
  .s-hero__title { font-size: clamp(3.5rem, 14vw, 6rem); }
  .s-statement__img { display: none; }
  .products-grid { grid-template-columns: 1fr; grid-template-rows: 320px 260px 260px 260px; }
  .prod-item--hero,.prod-item--wide { grid-column: span 1; grid-row: span 1; }
  .s-feature { height: auto; padding: 5rem 0; }
  .s-feature__stats { grid-template-columns: 1fr; gap: 2rem; width: 100%; }
  .s-feature__stat { border-right: none; margin-right: 0; padding: 0; border-bottom: 1px solid var(--c-rim); padding-bottom: 2rem; }
  .s-feature__stat:last-child { border-bottom: none; padding-bottom: 0; }
  .gallery-strip { padding: 0 1.5rem; }
  .s-gallery__head { padding: 0 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .gallery-drag-hint { padding: 0 1.5rem; }
  .gal-card { flex: 0 0 300px; height: 420px; }
  .s-quote__text { font-size: clamp(2.4rem, 9vw, 4rem); }
  .s-products__head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .s-products { padding: 5rem 0; }
  .s-gallery { padding: 5rem 0; }
  .s-cta { padding: 6rem 0; }
}
@media (max-width: 480px) {
  .gal-card { flex: 0 0 260px; height: 360px; }
  .s-cta__rings { display: none; }
}
