/* ============================================
   DECASTA — Brand Design System
   Premium Streetwear · Emotional Identity
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Barlow:wght@300;400;500&display=swap');

/* ---- TOKENS ---- */
:root {
  --dc-black:      #0A0A0A;
  --dc-deep:       #111111;
  --dc-surface:    #1A1A1A;
  --dc-card:       #222222;
  --dc-border:     rgba(255,255,255,0.08);
  --dc-border-md:  rgba(255,255,255,0.15);
  --dc-fire:       #E8500A;
  --dc-fire-glow:  #FF6B2B;
  --dc-white:      #F5F0EB;
  --dc-gray:       #888880;
  --dc-gray-light: #BBBBB5;
  --dc-gold:       #C8A96E;

  --ff-display:  'Bebas Neue', sans-serif;
  --ff-heading:  'Barlow Condensed', sans-serif;
  --ff-body:     'Barlow', sans-serif;

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out:   cubic-bezier(0.77, 0, 0.175, 1);

  --max-w: 1400px;
  --gutter: clamp(20px, 5vw, 80px);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--dc-black);
  color: var(--dc-white);
  font-family: var(--ff-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }
ul { list-style: none; }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px; height: 8px; background: var(--dc-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.12s var(--ease-out-expo);
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 56px; height: 56px; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--dc-black); }
::-webkit-scrollbar-thumb { background: var(--dc-fire); border-radius: 2px; }

/* ---- NOISE TEXTURE ---- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: 0.4;
}

/* ---- UTILITY ---- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.uppercase { text-transform: uppercase; }
.fire { color: var(--dc-fire); }
.gold { color: var(--dc-gold); }

/* ---- TYPOGRAPHY ---- */
.t-display {
  font-family: var(--ff-display);
  font-size: clamp(72px, 14vw, 200px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.t-display-md {
  font-family: var(--ff-display);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  text-transform: uppercase;
}
.t-heading {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.05;
}
.t-label {
  font-family: var(--ff-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dc-fire);
}
.t-body {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  font-weight: 300;
  color: var(--dc-gray-light);
}
.t-manifesto {
  font-family: var(--ff-heading);
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--dc-white);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-heading);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 36px;
  border: none; border-radius: 0;
  transition: all 0.3s var(--ease-out-expo);
  position: relative; overflow: hidden;
  cursor: none;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out-expo);
}
.btn:hover::before { transform: translateX(0); }

.btn-fire {
  background: var(--dc-fire);
  color: var(--dc-white);
}
.btn-fire:hover { background: var(--dc-fire-glow); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--dc-white);
  border: 1px solid var(--dc-border-md);
}
.btn-outline:hover { border-color: var(--dc-fire); color: var(--dc-fire); }

.btn-ghost {
  background: transparent; color: var(--dc-gray-light);
  padding: 0; letter-spacing: 0.2em;
  border-bottom: 1px solid var(--dc-border);
  padding-bottom: 4px;
}
.btn-ghost:hover { color: var(--dc-fire); border-color: var(--dc-fire); }

.btn-arrow::after { content: ' →'; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s var(--ease-out-expo);
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dc-border);
  padding: 14px var(--gutter);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 28px; letter-spacing: 0.1em;
  color: var(--dc-white);
}
.nav-logo span { color: var(--dc-fire); }
.nav-links {
  display: flex; gap: 36px; align-items: center;
}
.nav-links a {
  font-family: var(--ff-heading);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dc-gray);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--dc-fire);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--dc-white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cart {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-heading); font-size: 12px;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dc-white); background: none; border: none;
  transition: color 0.2s;
}
.nav-cart:hover { color: var(--dc-fire); }
.cart-count {
  width: 20px; height: 20px; background: var(--dc-fire);
  border-radius: 50%; font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--dc-white); transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.2) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.7) 75%,
    rgba(10,10,10,0.98) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 var(--gutter) clamp(60px, 8vh, 100px);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.hero-eyebrow-line {
  width: 40px; height: 1px; background: var(--dc-fire);
}
.hero-title-wrap { overflow: hidden; }
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(80px, 16vw, 220px);
  line-height: 0.88; letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--dc-white);
  transform: translateY(110%);
  animation: slideUp 1.2s var(--ease-out-expo) 0.3s forwards;
}
.hero-title .outline {
  -webkit-text-stroke: 1px var(--dc-white);
  color: transparent;
}
.hero-title .fire-text { color: var(--dc-fire); }
.hero-sub {
  font-family: var(--ff-heading);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300; font-style: italic;
  color: var(--dc-gray-light);
  max-width: 480px;
  margin-top: 20px; margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.9s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1.1s forwards;
}
.hero-scroll {
  position: absolute; bottom: clamp(30px,5vh,60px); right: var(--gutter);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-family: var(--ff-heading); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--dc-gray); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px; background: var(--dc-gray);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; right: 0;
  height: 100%; background: var(--dc-fire);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ---- MARQUEE ---- */
.marquee-section {
  border-top: 1px solid var(--dc-border);
  border-bottom: 1px solid var(--dc-border);
  overflow: hidden; padding: 20px 0;
  background: var(--dc-deep);
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--ff-display);
  font-size: 22px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dc-border-md); white-space: nowrap;
  display: flex; align-items: center; gap: 60px;
}
.marquee-item .dot {
  width: 6px; height: 6px; background: var(--dc-fire);
  border-radius: 50%; flex-shrink: 0;
}

/* ---- MANIFIESTO ---- */
.manifesto {
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  position: relative; overflow: hidden;
}
.manifesto-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: clamp(100px, 20vw, 300px);
  color: rgba(255,255,255,0.02);
  white-space: nowrap; pointer-events: none;
  letter-spacing: 0.05em;
}
.manifesto-inner {
  max-width: 900px; margin: 0 auto;
  position: relative; z-index: 1;
}
.manifesto-quote {
  font-family: var(--ff-display);
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.05; text-transform: uppercase;
  margin-bottom: 48px;
}
.manifesto-quote .line {
  display: block; overflow: hidden;
}
.manifesto-quote .line span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-out-expo);
}
.manifesto-quote .line.visible span { transform: translateY(0); }
.manifesto-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 60px;
}
.manifesto-pillar {
  border-left: 2px solid var(--dc-fire);
  padding-left: 24px;
}
.manifesto-pillar-title {
  font-family: var(--ff-heading);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--dc-fire); margin-bottom: 12px;
}
.manifesto-pillar p {
  font-size: 15px; line-height: 1.7;
  color: var(--dc-gray-light); font-weight: 300;
}

/* ---- PRODUCTOS ---- */
.productos {
  padding: clamp(80px, 10vh, 140px) var(--gutter);
  background: var(--dc-deep);
}
.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 6vh, 80px);
  gap: 24px; flex-wrap: wrap;
}
.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.producto-card {
  background: var(--dc-surface);
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo);
}
.producto-card:hover { transform: translateY(-4px); z-index: 2; }
.producto-img {
  aspect-ratio: 3/4;
  background: var(--dc-card);
  overflow: hidden; position: relative;
}
.producto-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--dc-surface) 0%, var(--dc-card) 100%);
}
.producto-img-placeholder svg { opacity: 0.12; }
.producto-badge {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--ff-heading);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 12px;
  background: var(--dc-fire); color: white;
}
.producto-hover-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.producto-card:hover .producto-hover-overlay { opacity: 1; }
.producto-info { padding: 20px; }
.producto-category {
  font-family: var(--ff-heading);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--dc-fire); margin-bottom: 6px;
}
.producto-name {
  font-family: var(--ff-heading);
  font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.producto-price {
  font-family: var(--ff-heading);
  font-size: 16px; font-weight: 600;
  color: var(--dc-white);
}
.producto-price .original {
  color: var(--dc-gray); text-decoration: line-through;
  margin-left: 8px; font-weight: 300;
}

/* ---- HISTORIA (ABOUT) ---- */
.historia {
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.historia-visual {
  position: relative;
}
.historia-img-main {
  aspect-ratio: 3/4;
  background: var(--dc-surface);
  overflow: hidden; position: relative;
}
.historia-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex; align-items: center; justify-content: center;
}
.historia-img-placeholder svg { opacity: 0.08; }
.historia-stat-card {
  position: absolute; bottom: -30px; right: -30px;
  background: var(--dc-fire);
  padding: 28px 32px;
  min-width: 180px;
}
.historia-stat-number {
  font-family: var(--ff-display);
  font-size: 56px; line-height: 1; color: white;
  display: block;
}
.historia-stat-label {
  font-family: var(--ff-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}
.historia-content { padding-top: 20px; }
.historia-values {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 32px 0;
}
.value-tag {
  font-family: var(--ff-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--dc-border-md);
  color: var(--dc-gray-light);
  transition: all 0.2s;
}
.value-tag:hover { border-color: var(--dc-fire); color: var(--dc-fire); }

/* ---- LOOKBOOK ---- */
.lookbook {
  padding: clamp(60px, 8vh, 100px) 0;
  overflow: hidden;
}
.lookbook-header { padding: 0 var(--gutter); margin-bottom: 48px; }
.lookbook-scroll {
  display: flex; gap: 2px; overflow-x: auto;
  padding: 0 var(--gutter);
  scrollbar-width: none;
  cursor: grab;
}
.lookbook-scroll::-webkit-scrollbar { display: none; }
.lookbook-scroll:active { cursor: grabbing; }
.lookbook-item {
  flex-shrink: 0; width: clamp(260px, 30vw, 400px);
  aspect-ratio: 2/3;
  background: var(--dc-surface);
  position: relative; overflow: hidden;
}
.lookbook-item-placeholder {
  width: 100%; height: 100%;
  background: var(--dc-card);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
}
.lookbook-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
  font-family: var(--ff-heading);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dc-white);
}

/* ---- TESTIMONIOS ---- */
.testimonios {
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  background: var(--dc-deep);
  border-top: 1px solid var(--dc-border);
  border-bottom: 1px solid var(--dc-border);
}
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px; margin-top: 60px;
}
.testimonio-card {
  background: var(--dc-surface);
  padding: 36px 32px;
  position: relative;
}
.testimonio-stars {
  display: flex; gap: 4px; margin-bottom: 20px;
}
.star { color: var(--dc-fire); font-size: 14px; }
.testimonio-text {
  font-family: var(--ff-heading);
  font-size: 17px; font-weight: 300; font-style: italic;
  line-height: 1.6; color: var(--dc-white);
  margin-bottom: 24px;
}
.testimonio-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonio-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--dc-fire); display: flex;
  align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 16px; color: white;
}
.testimonio-name {
  font-family: var(--ff-heading); font-size: 13px;
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.testimonio-location {
  font-size: 12px; color: var(--dc-gray);
  margin-top: 2px;
}
.testimonio-quote-mark {
  position: absolute; top: 28px; right: 28px;
  font-family: var(--ff-display); font-size: 80px;
  color: rgba(232, 80, 10, 0.08); line-height: 1;
  pointer-events: none;
}

/* ---- FAQ ---- */
.faq {
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  max-width: 800px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--dc-border);
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-family: var(--ff-heading);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dc-white);
  background: none; border: none;
  text-align: left; gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--dc-fire); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--dc-border-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s;
  font-size: 16px; color: var(--dc-gray);
}
.faq-item.open .faq-icon {
  background: var(--dc-fire); border-color: var(--dc-fire);
  color: white; transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }
.faq-answer p {
  font-size: 15px; line-height: 1.75;
  color: var(--dc-gray-light); font-weight: 300;
}

/* ---- NEWSLETTER ---- */
.newsletter {
  padding: clamp(80px, 12vh, 140px) var(--gutter);
  text-align: center;
  background: var(--dc-surface);
  position: relative; overflow: hidden;
}
.newsletter-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,80,10,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-form {
  display: flex; gap: 0;
  max-width: 500px; margin: 40px auto 0;
}
.newsletter-input {
  flex: 1; padding: 16px 20px;
  background: var(--dc-card); border: 1px solid var(--dc-border-md);
  border-right: none;
  color: var(--dc-white); font-family: var(--ff-body);
  font-size: 15px; font-weight: 300; outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: var(--dc-gray); }
.newsletter-input:focus { border-color: var(--dc-fire); }
.newsletter-btn {
  padding: 16px 28px;
  background: var(--dc-fire); border: 1px solid var(--dc-fire);
  color: white;
  font-family: var(--ff-heading); font-size: 12px;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.2s;
  cursor: none;
}
.newsletter-btn:hover { background: var(--dc-fire-glow); }

/* ---- FOOTER ---- */
.footer {
  background: var(--dc-deep);
  border-top: 1px solid var(--dc-border);
  padding: clamp(60px, 8vh, 100px) var(--gutter) 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px); margin-bottom: 60px;
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--dc-white);
  margin-bottom: 16px;
}
.footer-brand-name span { color: var(--dc-fire); }
.footer-tagline {
  font-size: 14px; line-height: 1.7;
  color: var(--dc-gray); max-width: 260px; font-weight: 300;
  margin-bottom: 32px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border: 1px solid var(--dc-border-md);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; font-size: 14px;
}
.social-link:hover { border-color: var(--dc-fire); background: rgba(232,80,10,0.1); }
.footer-col-title {
  font-family: var(--ff-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--dc-fire); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px; color: var(--dc-gray);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--dc-white); }
.footer-bottom {
  border-top: 1px solid var(--dc-border);
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-size: 12px; color: var(--dc-gray);
  letter-spacing: 0.1em;
}
.footer-legal {
  display: flex; gap: 24px;
}
.footer-legal a {
  font-size: 12px; color: var(--dc-gray);
  letter-spacing: 0.1em; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--dc-white); }
.payment-icons {
  display: flex; gap: 8px; align-items: center;
}
.payment-icon {
  font-size: 11px; color: var(--dc-gray);
  border: 1px solid var(--dc-border);
  padding: 4px 10px; letter-spacing: 0.1em;
  font-family: var(--ff-heading); font-weight: 600;
}

/* ---- CART DRAWER ---- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: 420px; max-width: 100%;
  background: var(--dc-surface);
  border-left: 1px solid var(--dc-border);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-expo);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--dc-border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-title {
  font-family: var(--ff-display);
  font-size: 24px; letter-spacing: 0.1em;
}
.cart-close {
  width: 40px; height: 40px; background: none; border: 1px solid var(--dc-border-md);
  color: var(--dc-white); font-size: 18px; display: flex;
  align-items: center; justify-content: center; transition: all 0.2s;
}
.cart-close:hover { border-color: var(--dc-fire); color: var(--dc-fire); }
.cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  padding: 40px;
}
.cart-empty p { font-size: 15px; color: var(--dc-gray); text-align: center; }
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--dc-border);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-family: var(--ff-heading); font-size: 18px;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 20px;
}
.cart-total span:last-child { color: var(--dc-fire); }

/* ---- MOBILE NAV ---- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--dc-black);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out-expo);
  display: flex; flex-direction: column;
  padding: 100px var(--gutter) 60px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-links {
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav-links a {
  font-family: var(--ff-display);
  font-size: clamp(36px, 8vw, 56px);
  color: var(--dc-gray);
  transition: color 0.2s;
  padding: 8px 0;
  border-bottom: 1px solid var(--dc-border);
}
.mobile-nav-links a:hover { color: var(--dc-fire); }

/* ---- ANIMATIONS ---- */
@keyframes slideUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .historia { grid-template-columns: 1fr; }
  .historia-stat-card { right: 0; bottom: -20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .manifesto-body { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .historia-stat-card { position: relative; right: auto; bottom: auto; margin-top: 16px; }
  .historia-visual { order: -1; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--dc-border-md); border-bottom: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cart-drawer { width: 100%; }
  .testimonio-card { padding: 24px 20px; }
}
