/* ═══════════════════════════════════════════════════════════
   RODIZIO COLOMBIA — styles.css
   Modo oscuro por defecto | Modo claro disponible
   Fuentes: Akaposse (títulos em) · Amaranth (subtítulos) · Poppins (cuerpo)
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.cdnfonts.com/css/akaposse');
@import url('https://fonts.googleapis.com/css2?family=Amaranth:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ═══════════════════════════════════════════════════════════
   VARIABLES — MODO OSCURO (por defecto)
═══════════════════════════════════════════════════════════ */
:root {
  /* Fondo & superficies */
  --bg-page:       #0a0a0a;
  --bg-dark:       #111111;
  --bg-card:       #161616;
  --bg-border:     #242424;
  --bg-navbar:     rgba(10,10,10,0.97);

  /* Texto */
  --text-primary:  #F5ECD7;
  --text-secondary:#a89880;
  --text-muted:    #6b5c4e;

  /* Acentos corporativos (FIJOS en ambos modos) */
  --accent-red:    #b94f2f;
  --accent-mid:    #c96234;
  --accent-gold:   #c9924f;
  --accent-lt:     #d9a86a;

  /* Gradientes corporativos */
  --grad-fire:  linear-gradient(135deg, #b94f2f 0%, #c9924f 100%);
  --grad-fire2: linear-gradient(135deg, #c96234 0%, #c9924f 100%);
  --grad-gold:  linear-gradient(135deg, #c9924f 0%, #d9a86a 50%, #c9924f 100%);

  /* Fuentes */
  --font-display: 'Akaposse', serif;
  --font-head:    'Amaranth', sans-serif;
  --font-body:    'Poppins', sans-serif;

  /* Misc */
  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ═══════════════════════════════════════════════════════════
   VARIABLES — MODO CLARO
═══════════════════════════════════════════════════════════ */
body.light-mode {
  --bg-page:       #F9F4EE;
  --bg-dark:       #EFE8DE;
  --bg-card:       #FFFFFF;
  --bg-border:     #E0D4C6;
  --bg-navbar:     rgba(249,244,238,0.97);

  --text-primary:  #1a0e08;
  --text-secondary:#5a3d28;
  --text-muted:    #9a7a5a;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 82px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--bg-navbar);
  box-shadow: 0 2px 30px rgba(185,79,47,0.15);
  backdrop-filter: blur(12px);
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo dark/light switching */
.logo-dark  { display: block; }
.logo-light { display: none; }
body.light-mode .logo-dark  { display: none; }
body.light-mode .logo-light { display: block; }

/* Logo */
.nav-logo { flex-shrink: 0; }
.logo-img {
  height: 58px; width: auto;
  filter: drop-shadow(0 0 10px rgba(185,79,47,0.45));
  transition: filter var(--transition), transform var(--transition);
  animation: logoPulse 3.5s ease-in-out infinite;
}
.logo-img:hover {
  filter: drop-shadow(0 0 22px rgba(201,146,79,0.85));
  transform: scale(1.06);
}
@keyframes logoPulse {
  0%,100% { filter: drop-shadow(0 0 10px rgba(185,79,47,0.45)); }
  50%      { filter: drop-shadow(0 0 22px rgba(201,146,79,0.75)); }
}

/* Links centrados */
.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 8px 18px;
  border-radius: var(--radius);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  width: 0; height: 2px;
  background: var(--grad-fire);
  transform: translateX(-50%);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--accent-gold); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 36px); }

/* Acciones */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Toggle tema */
.theme-toggle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(185,79,47,0.1);
  border: 1px solid rgba(185,79,47,0.22);
  color: var(--accent-gold);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.theme-toggle:hover {
  background: rgba(185,79,47,0.2);
  border-color: var(--accent-gold);
  transform: rotate(18deg) scale(1.08);
}
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
body.light-mode .theme-toggle .icon-sun  { display: block; }
body.light-mode .theme-toggle .icon-moon { display: none; }

/* WhatsApp nav */
.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: background 0.4s ease;
}

body:not(.light-mode) .hero {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(185,79,47,0.2) 0%, transparent 62%),
    radial-gradient(ellipse at 20% 80%, rgba(201,98,52,0.08) 0%, transparent 50%),
    #0a0a0a;
}
body.light-mode .hero {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(185,79,47,0.1) 0%, transparent 60%),
    #F9F4EE;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.flame-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 35% at 50% 100%, rgba(185,79,47,0.15) 0%, transparent 70%);
}
body.light-mode .flame-overlay { opacity: 0.35; }

/* Brasas animadas */
.ember {
  position: absolute;
  bottom: -10px;
  left: var(--x);
  width: var(--size); height: var(--size);
  background: var(--accent-gold);
  border-radius: 50%;
  animation: emberRise 4.5s ease-in infinite;
  animation-delay: var(--delay);
  box-shadow: 0 0 6px var(--accent-red);
}
body.light-mode .ember { opacity: 0.45; }
@keyframes emberRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 1; }
  50%  { transform: translateY(-45vh) translateX(18px) scale(0.55); opacity: 0.7; }
  100% { transform: translateY(-90vh) translateX(-10px) scale(0); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 820px;
  padding: 130px 40px 90px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}

/* Título principal: Amaranth */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 9vw, 114px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--text-primary);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.12s ease both;
}
/* Em en Akaposse con gradiente corporativo rojo→dorado */
.hero-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-title span {
  display: block;
  font-family: var(--font-head);
  font-size: 0.36em;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-lt);
  -webkit-text-fill-color: var(--accent-lt);
  font-style: normal;
  margin-top: 10px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px; font-weight: 300;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.8;
  animation: fadeInUp 0.8s 0.25s ease both;
}

.hero-ctas {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s ease both;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex; gap: 0;
  justify-content: center; align-items: center;
  animation: fadeInUp 0.8s 0.55s ease both;
  background: rgba(185,79,47,0.06);
  border: 1px solid rgba(201,146,79,0.16);
  border-radius: 60px;
  padding: 16px 44px;
  backdrop-filter: blur(8px);
}
body.light-mode .hero-stats {
  background: rgba(185,79,47,0.05);
  border-color: rgba(185,79,47,0.18);
}

.stat { text-align: center; padding: 0 28px; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px; font-weight: 400;
  color: var(--accent-gold);
}
.stat span {
  font-family: var(--font-head);
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px; height: 42px;
  background: rgba(201,146,79,0.18);
}

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeIn 1s 1.8s ease both;
}
.scroll-arrow {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--accent-mid), transparent);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: scaleY(1);   transform-origin: top; }
  50%      { transform: scaleY(0.4); transform-origin: top; }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--grad-fire);
  padding: 13px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 64px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #fff; flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   BOTONES
═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-fire);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 36px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(185,79,47,0.38);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(185,79,47,0.6);
}
.btn-primary.large { padding: 18px 50px; font-size: 16px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-red);
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 13px 36px; border-radius: 50px;
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: rgba(185,79,47,0.1);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(185,79,47,0.07);
  color: var(--text-primary);
  border: 1px solid var(--bg-border);
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 32px; border-radius: 50px;
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(185,79,47,0.14);
  border-color: var(--accent-red);
  transform: translateY(-2px);
}

.btn-outline-fire {
  display: inline-flex; align-items: center;
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-mid);
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 13px 36px; border-radius: 50px;
  transition: all var(--transition);
}
.btn-outline-fire:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(185,79,47,0.5);
}

.btn-fire {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-fire);
  color: #fff;
  font-family: var(--font-head);
  font-size: 19px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 20px 58px; border-radius: 50px;
  box-shadow: 0 6px 30px rgba(185,79,47,0.48);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-fire:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 50px rgba(185,79,47,0.7);
}

.btn-whatsapp-big {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff;
  font-family: var(--font-head);
  font-size: 19px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 20px 50px; border-radius: 50px;
  box-shadow: 0 6px 30px rgba(37,211,102,0.38);
  transition: all var(--transition);
}
.btn-whatsapp-big:hover {
  background: #1da851;
  transform: translateY(-4px);
  box-shadow: 0 14px 50px rgba(37,211,102,0.6);
}

.btn-product {
  display: block; text-align: center;
  background: var(--grad-fire);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 12px; border-radius: var(--radius);
  transition: opacity var(--transition), transform var(--transition);
}
.btn-product:hover { opacity: 0.88; transform: scale(1.02); }

/* ═══════════════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 64px; }

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--accent-lt); }

/* Subtítulos con Amaranth */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}
/* Partes destacadas (cursivas) con Akaposse + gradiente corporativo */
.section-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 300;
  color: var(--text-secondary);
  max-width: 560px;
  margin-left: auto; margin-right: auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   VALUE / BENEFITS
═══════════════════════════════════════════════════════════ */
.value-section {
  padding: 110px 0;
  background: var(--bg-dark);
  transition: background 0.4s ease;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 64px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-fire);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185,79,47,0.3);
  box-shadow: 0 20px 60px rgba(185,79,47,0.1);
}
.benefit-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.benefit-card h3 {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  color: var(--accent-lt);
  margin-bottom: 12px;
}
.benefit-card p {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  color: var(--text-secondary); line-height: 1.75;
}
.value-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   FIRE DIVIDER
═══════════════════════════════════════════════════════════ */
.fire-divider {
  height: 3px;
  background: var(--grad-fire);
  position: relative;
}
.fire-divider::after {
  content: '🔥';
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════════════════════ */
.featured-products {
  padding: 110px 0;
  background: var(--bg-page);
  transition: background 0.4s ease;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 60px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185,79,47,0.4);
  box-shadow: 0 24px 60px rgba(185,79,47,0.14);
}
.product-card.featured {
  border-color: rgba(201,146,79,0.38);
  box-shadow: 0 0 28px rgba(201,146,79,0.1);
}

.product-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--grad-gold);
  color: #1a0e08;
  font-family: var(--font-head);
  font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
  z-index: 2;
}

.product-img-wrap {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(185,79,47,0.14) 0%, transparent 65%);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  position: relative; z-index: 1;
}
.product-placeholder { text-align: center; z-index: 1; }
.product-icon-big { font-size: 54px; display: block; margin-bottom: 8px; }
.product-placeholder p {
  font-family: var(--font-head);
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted);
}

.product-info { padding: 20px; }
.product-info h3 {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px; line-height: 1.3;
}
.product-info h3 em {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  color: var(--accent-lt);
  -webkit-text-fill-color: var(--accent-lt);
}
.product-info p {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 14px; line-height: 1.65;
}

.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.product-tags span {
  background: rgba(185,79,47,0.1);
  border: 1px solid rgba(185,79,47,0.25);
  color: var(--accent-gold);
  font-family: var(--font-head);
  font-size: 10px; font-weight: 600;
  letter-spacing: 1px;
  padding: 3px 10px; border-radius: 50px;
}

.products-cta-block {
  text-align: center; padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.products-cta-block p {
  font-family: var(--font-body);
  font-size: 15px; color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════
   EXPERIENCE
═══════════════════════════════════════════════════════════ */
.experience-section {
  padding: 130px 0;
  position: relative; overflow: hidden;
  background: var(--bg-dark);
  transition: background 0.4s ease;
}
.experience-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b94f2f' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.exp-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(185,79,47,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.exp-content {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto; text-align: center;
}
.exp-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700; line-height: 1.1;
  color: var(--text-primary); margin-bottom: 24px;
}
.exp-title em {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.exp-desc {
  font-family: var(--font-body);
  font-size: 17px; font-weight: 300;
  color: var(--text-secondary); line-height: 1.85; margin-bottom: 52px;
}
.exp-pillars {
  display: flex; justify-content: center;
  gap: 56px; margin-bottom: 52px;
}
.pillar { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.pillar-icon { font-size: 38px; }
.pillar strong {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent-lt);
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.gallery-section {
  padding: 110px 0;
  background: var(--bg-page);
  transition: background 0.4s ease;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px; margin-bottom: 28px;
}
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.g-tall  { grid-row: span 2; }
.gallery-item.g-wide  { grid-column: span 2; }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-placeholder span { font-size: 48px; }
.gallery-placeholder p {
  font-family: var(--font-head);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,236,215,0.4);
}
.gp1 { background: linear-gradient(135deg, #1a0a04, #2e1408); }
.gp2 { background: linear-gradient(135deg, #140806, #241210); }
.gp3 { background: linear-gradient(135deg, #0e0e18, #181820); }
.gp4 { background: linear-gradient(135deg, #121a10, #1c2a18); }
.gp5 { background: linear-gradient(135deg, #1a1206, #2a1e0a); }
body.light-mode .gp1 { background: linear-gradient(135deg, #e8d5c0, #d4b890); }
body.light-mode .gp2 { background: linear-gradient(135deg, #dcc8b0, #c9b090); }
body.light-mode .gp3 { background: linear-gradient(135deg, #d0c8d8, #b8b0c8); }
body.light-mode .gp4 { background: linear-gradient(135deg, #c8d8c0, #b0c8a8); }
body.light-mode .gp5 { background: linear-gradient(135deg, #e0d0a8, #d0c090); }
body.light-mode .gallery-placeholder p { color: rgba(90,61,40,0.5); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(185,79,47,0.75) 0%, transparent 50%);
  opacity: 0;
  display: flex; align-items: flex-end; padding: 20px;
  transition: opacity var(--transition);
}
.gallery-overlay span {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }

.gallery-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  color: var(--text-muted);
}
.gallery-note a { color: var(--accent-gold); font-weight: 500; transition: color var(--transition); }
.gallery-note a:hover { color: var(--accent-red); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 110px 0;
  background: var(--bg-dark);
  transition: background 0.4s ease;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition);
}
.testimonial-card.featured {
  border-color: rgba(201,146,79,0.38);
  box-shadow: 0 0 36px rgba(201,146,79,0.09);
  transform: scale(1.03);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(185,79,47,0.3); }
.testimonial-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.stars { font-size: 20px; margin-bottom: 16px; }
.testimonial-card p {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300; font-style: italic;
  color: var(--text-secondary); line-height: 1.85; margin-bottom: 20px;
}
.testimonial-card strong {
  font-family: var(--font-head);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-lt);
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════ */
.final-cta {
  padding: 130px 0;
  position: relative; overflow: hidden; text-align: center;
  transition: background 0.4s ease;
}
body:not(.light-mode) .final-cta {
  background: radial-gradient(ellipse at 50% 100%, rgba(185,79,47,0.18) 0%, transparent 62%), #0a0a0a;
}
body.light-mode .final-cta {
  background: radial-gradient(ellipse at 50% 100%, rgba(185,79,47,0.1) 0%, transparent 60%), #EFE8DE;
}
.cta-embers { position: absolute; inset: 0; pointer-events: none; }
.final-cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 700; line-height: 1;
  color: var(--text-primary); margin-bottom: 20px;
}
.cta-title em {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.cta-desc {
  font-family: var(--font-body);
  font-size: 17px; font-weight: 300;
  color: var(--text-secondary); line-height: 1.85;
  max-width: 600px; margin: 0 auto 52px;
}
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  position: relative; overflow: hidden; padding-top: 80px;
  transition: background 0.4s ease;
}
body:not(.light-mode) .footer { background: #050505; }
body.light-mode .footer        { background: #1a0e08; }

/* ── Llamas ── */
.footer-flames {
  position: absolute; top: 0; left: 0; right: 0;
  height: 80px; pointer-events: none; overflow: hidden;
}

.footer-flame {
  position: absolute;
  bottom: 0;
  /*
    Forma de llama real:
    - clip-path dibuja una silueta de gota invertida puntiaguda arriba,
      ancha abajo, que es exactamente cómo se ve una llama de gas.
    - width == height para que el clip-path cuadrado no deforme la forma.
  */
  clip-path: polygon(
    50%  0%,        /* punta superior */
    65%  25%,       /* lado der. superior */
    80%  48%,       /* hombro der. */
    72%  72%,       /* cintura der. */
    85%  88%,       /* cadera der. */
    100% 100%,      /* base der. */
    0%   100%,      /* base izq. */
    15%  88%,       /* cadera izq. */
    28%  72%,       /* cintura izq. */
    20%  48%,       /* hombro izq. */
    35%  25%        /* lado izq. superior */
  );
  animation: flameFlicker 1.6s ease-in-out infinite alternate;
}

/* Llama interior (brillo) — pseudo-elemento más estrecho y claro */
.footer-flame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 45%;
  height: 65%;
  clip-path: polygon(
    50%  0%,
    68%  30%,
    78%  60%,
    65%  85%,
    100% 100%,
    0%   100%,
    35%  85%,
    22%  60%,
    32%  30%
  );
  background: linear-gradient(to top, rgba(255,200,80,0.7), rgba(255,240,120,0.3), transparent);
}

/* Tamaños y posiciones de cada llama — width=height obligatorio */
.f1 { left: 6%;   width: 42px; height: 42px; background: linear-gradient(to top, #b94f2f, #c96234 60%, transparent); animation-delay: 0s;    animation-duration: 1.4s; }
.f2 { left: 16%;  width: 28px; height: 28px; background: linear-gradient(to top, #c96234, #c9924f 60%, transparent); animation-delay: 0.35s;  animation-duration: 1.7s; }
.f3 { left: 28%;  width: 52px; height: 52px; background: linear-gradient(to top, #b94f2f, #c96234 55%, transparent); animation-delay: 0.2s;   animation-duration: 1.5s; }
.f4 { left: 42%;  width: 34px; height: 34px; background: linear-gradient(to top, #c96234, #c9924f 60%, transparent); animation-delay: 0.55s;  animation-duration: 1.9s; }
.f5 { left: 55%;  width: 60px; height: 60px; background: linear-gradient(to top, #b94f2f, #c96234 50%, transparent); animation-delay: 0.1s;   animation-duration: 1.3s; }
.f6 { left: 72%;  width: 38px; height: 38px; background: linear-gradient(to top, #c96234, #c9924f 60%, transparent); animation-delay: 0.45s;  animation-duration: 1.6s; }
.f7 { left: 86%;  width: 46px; height: 46px; background: linear-gradient(to top, #b94f2f, #c96234 55%, transparent); animation-delay: 0.25s;  animation-duration: 1.8s; }

@keyframes flameFlicker {
  0% {
    transform: scaleX(1)    scaleY(1)    rotate(-1.5deg);
    opacity: 0.9;
  }
  40% {
    transform: scaleX(0.93) scaleY(1.08) rotate(1deg);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.88) scaleY(1.18) rotate(2deg);
    opacity: 0.85;
  }
}

/* ── Contenedor y grid ── */
.footer-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(185,79,47,0.14);
}

/* ── Logo ── */
.footer-logo {
  height: 62px; width: auto; margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(185,79,47,0.38));
}
.footer-logo-light { display: none; }

/* ── Tagline ── */
.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  color: #7a6558; line-height: 1.75;
  margin-bottom: 20px; max-width: 240px;
}

/* ── Social ── */
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.social-btn.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.whatsapp  { background: #25D366; }
.social-btn:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 8px 20px rgba(185,79,47,0.3); }

/* ── Títulos de columna ── */
.footer-nav h4, .footer-contact h4, .footer-legal h4 {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent-gold); margin-bottom: 20px;
}

/* ── Nav ── */
.footer-nav ul, .footer-legal ul { list-style: none; }
.footer-nav li, .footer-legal li { margin-bottom: 10px; }
.footer-nav a, .footer-legal button {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300; color: #7a6558;
  cursor: pointer; background: none;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-legal button:hover { color: var(--accent-lt); }

/* ── Contacto ── */
.footer-contact p { font-family: var(--font-body); font-size: 14px; font-weight: 300; color: #7a6558; margin-bottom: 8px; }
.footer-contact a { color: #7a6558; transition: color var(--transition); }
.footer-contact a:hover { color: var(--accent-lt); }
.footer-cta-btn {
  display: inline-block; margin-top: 16px;
  background: var(--grad-fire); color: #fff;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 24px; border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.footer-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(185,79,47,0.45); }

/* ── Bottom bar ── */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-family: var(--font-body); font-size: 12px; color: #4a3830; }

/* ── Monster badge ── */
.monster-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #7B2FF7, #00C2FF);
  padding: 10px 24px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(123,47,247,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: monsterPulse 2.5s ease-in-out infinite;
}
.monster-badge:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 30px rgba(123,47,247,0.5); }
.monster-icon { font-size: 18px; }
.monster-text { font-family: var(--font-head); font-size: 12px; letter-spacing: 1px; color: #fff; text-transform: uppercase; }
.monster-text strong { font-weight: 800; }
@keyframes monsterPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(123,47,247,0.3); }
  50%      { box-shadow: 0 4px 30px rgba(0,194,255,0.5); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-top    { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   MODALES
═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--bg-card);
  border: 1px solid rgba(185,79,47,0.25);
  border-radius: var(--radius-lg);
  padding: 40px; max-width: 640px; width: 100%;
  max-height: 80vh; overflow-y: auto;
  position: relative; transform: translateY(30px);
  transition: transform 0.3s ease;
  box-shadow: 0 0 60px rgba(185,79,47,0.15);
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(185,79,47,0.08);
  border: 1px solid rgba(185,79,47,0.2);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--transition);
}
.modal-close:hover { background: rgba(185,79,47,0.22); }
.modal-box h3 {
  font-family: var(--font-head);
  font-size: 24px; font-weight: 700;
  color: var(--accent-gold); margin-bottom: 24px; padding-right: 48px;
}
.modal-content h4 {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-lt); margin: 20px 0 8px;
}
.modal-content p, .modal-content li {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 300;
  color: var(--text-secondary); line-height: 1.85; margin-bottom: 8px;
}
.modal-content ul { padding-left: 20px; }

/* ═══════════════════════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════════════════════ */
.floating-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2s ease-in-out infinite;
}
.floating-wa:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.7); }
.floating-wa-tooltip {
  position: absolute; right: 72px;
  background: var(--bg-card); color: var(--text-primary);
  border: 1px solid var(--bg-border);
  font-family: var(--font-head); font-size: 11px; letter-spacing: 1px;
  white-space: nowrap; padding: 6px 14px; border-radius: 50px;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.floating-wa:hover .floating-wa-tooltip { opacity: 1; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ═══════════════════════════════════════════════════════════
   ANIMACIONES
═══════════════════════════════════════════════════════════ */
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos][data-aos-delay="100"]  { transition-delay: 0.10s; }
[data-aos][data-aos-delay="150"]  { transition-delay: 0.15s; }
[data-aos][data-aos-delay="200"]  { transition-delay: 0.20s; }
[data-aos][data-aos-delay="300"]  { transition-delay: 0.30s; }
[data-aos][data-aos-delay="400"]  { transition-delay: 0.40s; }
[data-aos][data-aos-delay="500"]  { transition-delay: 0.50s; }

/* ═══════════════════════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb { background: var(--accent-red); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-gold); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links {
    position: fixed; top: 82px; left: 0; right: 0;
    background: var(--bg-navbar); backdrop-filter: blur(14px);
    flex-direction: column; padding: 20px; gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    border-bottom: 1px solid var(--bg-border);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 18px; padding: 14px 20px; }
  .hamburger { display: flex; }
  .nav-whatsapp span { display: none; }
  .nav-whatsapp { padding: 9px; border-radius: 50%; }
  .hero-content { padding: 120px 20px 60px; }
  .hero-stats { flex-wrap: wrap; padding: 16px 20px; }
  .stat { padding: 10px 16px; }
  .products-grid     { grid-template-columns: 1fr; }
  .benefits-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.g-tall, .gallery-item.g-wide { grid-row: auto; grid-column: auto; }
  .footer-top    { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .exp-pillars   { gap: 28px; }
  .cta-buttons   { flex-direction: column; align-items: center; }
  .products-cta-block { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-fire, .btn-whatsapp-big { width: 100%; justify-content: center; }
}
/* ═══════════════════════════════════════════════════════════
   EXPERIENCIA RODIZIO — tarjeta especial (index.html)
═══════════════════════════════════════════════════════════ */
.product-card--experience {
  border-color: rgba(201,146,79,0.22);
  background: linear-gradient(160deg, var(--bg-card) 60%, rgba(201,146,79,0.05) 100%);
}
.product-card--experience:hover {
  border-color: rgba(201,146,79,0.5);
  box-shadow: 0 24px 60px rgba(201,146,79,0.14);
}
.product-placeholder--exp {
  background: linear-gradient(135deg, #1a1206, #2e1e08) !important;
}
body.light-mode .product-placeholder--exp {
  background: linear-gradient(135deg, #f0e4d0, #ddd0b0) !important;
}
.product-badge--exp {
  background: linear-gradient(135deg, #c9924f, #d9a86a) !important;
  color: #1a0e08 !important;
}
.btn-product--exp {
  background: var(--grad-gold) !important;
  color: #1a0e08 !important;
}
.btn-product--exp:hover {
  opacity: 0.9;
  box-shadow: 0 6px 20px rgba(201,146,79,0.4) !important;
}

/* ═══════════════════════════════════════════════════════════
   GALERÍA — soporte para imágenes reales
═══════════════════════════════════════════════════════════ */
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }