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

:root {
  --black:       #000000;
  --black-soft:  #080808;
  --black-card:  #0e0e0e;
  --black-glass: rgba(14,14,14,0.85);
  --gold:        #C9A84C;
  --gold-dark:   #A88730;
  --gold-light:  #E8CC87;
  --gold-glow:   rgba(201,168,76,0.18);
  --white:       #FFFFFF;
  --white-smoke: #F0EDE8;
  --gray-lux:    #9C958E;
  --gray-mid:    #3A3530;
  --font-heading:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', -apple-system, sans-serif;
  --ease-lux:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white-smoke);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 28px 0;
  transition: all 0.5s var(--ease-lux);
}

.header.scrolled {
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 16px 0;
}

.header .container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 6px; text-decoration: none; }

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

@media (min-width: 769px) {
  .nav {
    position: fixed;
    top: 28px;
    right: 28px;
    z-index: 1001;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border: none;
    overflow: visible;
    transition: top 0.5s var(--ease-lux);
  }

  .header.scrolled + .nav {
    top: 16px;
  }

  .menu-toggle,
  .nav-close { display: none; }
}

.nav a {
  color: rgba(240,237,232,0.7); text-decoration: none;
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}

.nav a:hover { color: var(--gold); }

.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease-lux);
}

.nav a:hover::after { width: 100%; }

.menu-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.4rem; cursor: pointer; }

.nav-close { display: none; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  padding-left: 16px;
  border-left: 1px solid rgba(201,168,76,0.2);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(240,237,232,0.5);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  cursor: pointer;
  transition: color 0.3s;
  padding: 4px 2px;
}

.lang-btn:hover { color: var(--gold); }

.lang-btn.active {
  color: var(--gold);
  font-weight: 600;
}

.lang-separator {
  color: rgba(201,168,76,0.25);
  font-size: 0.6rem;
  font-weight: 300;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--black);
}

.hero-bg { position: absolute; inset: 0; }

.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 20%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(201,168,76,0.03) 0%, transparent 50%);
}

.hero-grain {
  position: absolute; 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,1) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 720px; padding: 0 20px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem; letter-spacing: 8px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; font-weight: 400;
  opacity: 0; animation: fadeUp 1s ease 0.4s forwards;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: inline-block;
  width: 40px; height: 1px; background: var(--gold); opacity: 0.5;
}

.hero-brand {
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 1s ease 0.1s forwards;
}

.hero-logo-img {
  width: clamp(180px, 24vw, 320px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 10px; color: var(--white);
  opacity: 0; animation: fadeUp 1s ease 0.7s forwards;
  letter-spacing: -0.5px;
}

.hero-title em { font-style: italic; color: var(--gold); font-weight: 400; }

.hero-title-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300; font-style: italic;
  color: rgba(240,237,232,0.5);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 1s ease 1s forwards;
}

.hero-desc {
  font-size: 0.95rem; color: var(--gray-lux);
  margin-bottom: 44px;
  margin-left: auto; margin-right: auto;
  font-weight: 300; max-width: 460px;
  opacity: 0; animation: fadeUp 1s ease 1.2s forwards;
  line-height: 1.8;
}

.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s ease 1.5s forwards;
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 0; right: 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px; z-index: 2;
  opacity: 0; animation: fadeUp 1s ease 2s forwards;
  text-align: center;
  pointer-events: none;
}

.hero-scroll span {
  font-size: 0.62rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gray-lux);
}

.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1) translateY(0); }
  50% { opacity: 0.3; transform: scaleY(0.6) translateY(4px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 44px;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 0.4s var(--ease-lux); border: none;
}

.btn-gold {
  background: var(--gold); color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
}

.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
.section { padding: 120px 0; }

.section-header { text-align: center; margin-bottom: 70px; }

.section-label {
  font-size: 0.62rem; letter-spacing: 6px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; font-weight: 400;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}

.section-label::before, .section-label::after {
  content: ''; display: inline-block;
  width: 30px; height: 1px; background: var(--gold); opacity: 0.4;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300; color: var(--white);
  margin-bottom: 18px; letter-spacing: -0.3px;
}

.section-divider {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
}

.section-desc {
  color: var(--gray-lux); font-size: 0.9rem;
  max-width: 560px; margin: 24px auto 0;
  font-weight: 300; line-height: 1.9;
}

/* ===== TIMELINE CAROUSEL ===== */
.story-section {
  background: var(--black-soft);
  position: relative; overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

/* Timeline progress bar */
.timeline-nav {
  position: relative;
  margin: 0 auto 60px;
  max-width: 800px;
  padding: 0 20px;
}

.timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* The horizontal line */
.timeline-track::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: rgba(201,168,76,0.15);
  transform: translateY(-50%);
  z-index: 0;
}

.timeline-progress-line {
  position: absolute;
  top: 50%; left: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.3));
  transform: translateY(-50%);
  z-index: 1;
  transition: width 0.6s var(--ease-lux);
  width: 0%;
}

.timeline-node {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  cursor: pointer;
  flex: 0 0 auto;
}

.timeline-node-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--black-soft);
  border: 1px solid rgba(201,168,76,0.3);
  transition: all 0.4s var(--ease-lux);
  position: relative;
}

.timeline-node-dot::after {
  content: '';
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}

.timeline-node.active .timeline-node-dot {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
  transform: scale(1.3);
}

.timeline-node.active .timeline-node-dot::after { opacity: 1; }

.timeline-node.passed .timeline-node-dot {
  border-color: var(--gold);
  background: var(--gold);
}

.timeline-node.passed .timeline-node-dot::after { opacity: 0; }

.timeline-node-label {
  font-size: 0.58rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.35);
  transition: color 0.3s;
  white-space: nowrap;
  font-weight: 400;
}

.timeline-node.active .timeline-node-label { color: var(--gold); }
.timeline-node.passed .timeline-node-label { color: rgba(201,168,76,0.55); }

/* Carousel container */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.7s var(--ease-lux);
}

.carousel-slide {
  min-width: 100%;
  padding: 0 16px;
}

.carousel-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.08);
  position: relative;
  overflow: hidden;
}

.carousel-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.02) 0%, transparent 60%);
  pointer-events: none;
}

/* Desktop: video keeps natural 9:16 ratio */
.carousel-media {
  position: relative;
  background: #000;
  aspect-ratio: 9/16;
  overflow: hidden;
}

.carousel-media video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.carousel-media-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  display: block;
  background: linear-gradient(to right, transparent 75%, rgba(14,14,14,0.95) 100%);
}

.video-mute-btn {
  position: absolute; bottom: 16px; left: 16px; z-index: 5;
  width: 40px; height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease-lux);
  backdrop-filter: blur(4px);
}

.video-mute-btn:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  transform: scale(1.1);
}

.video-mute-btn svg {
  width: 20px; height: 20px;
}

.carousel-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px;
  position: relative;
}

.carousel-chapter-tag {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 8px;
}

.carousel-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(201,168,76,0.06);
  position: absolute;
  top: 24px; right: 32px;
  letter-spacing: -2px;
  user-select: none;
}

.carousel-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.carousel-divider {
  width: 36px; height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
}

.carousel-desc {
  font-size: 0.85rem;
  color: var(--gray-lux);
  line-height: 1.9;
  font-weight: 300;
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.carousel-btn {
  width: 46px; height: 46px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.carousel-counter {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  min-width: 56px;
  text-align: center;
  font-weight: 300;
  letter-spacing: 2px;
}

.carousel-counter span { color: rgba(201,168,76,0.35); }

/* ===== PRODUCTOS ===== */
.productos-section {
  background: var(--black);
  position: relative;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.producto-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.08);
  overflow: hidden;
  transition: all 0.4s var(--ease-lux);
  display: flex;
  flex-direction: column;
}

.producto-card:hover {
  border-color: rgba(201,168,76,0.28);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(201,168,76,0.05);
}

.producto-thumb-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--black-card);
  text-decoration: none;
}

.producto-thumb {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a1810 0%, #0a0a0a 100%);
}

.producto-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-lux);
}

.is-landscape .producto-thumb {
  background: radial-gradient(ellipse at center, #1a1810 0%, #000 100%);
}

.is-landscape .producto-thumb img {
  object-fit: contain;
  padding: 12%;
}

.producto-thumb-link:hover .producto-thumb img {
  transform: scale(1.06);
}

.producto-skeleton {
  width: 100%; height: 100%;
  background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Overlay on hover */
.producto-thumb-link::after {
  content: 'Ver en Instagram';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  font-family: var(--font-body); font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
}

.producto-thumb-link:hover::after { opacity: 1; }

.producto-ig-badge {
  position: absolute; top: 10px; right: 10px;
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.producto-ig-badge svg {
  width: 14px; height: 14px; fill: white;
}

.producto-info {
  padding: 20px 22px 22px;
  border-top: 1px solid rgba(201,168,76,0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.producto-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
}

.producto-cat {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.producto-cta {
  margin-top: 10px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, letter-spacing 0.3s;
  display: inline-block;
}

.producto-cta:hover {
  color: var(--gold-light);
  letter-spacing: 2.5px;
}

.productos-cta {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .productos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .productos-grid { grid-template-columns: 1fr; }
}

/* ===== REELS ===== */
.reels-section { background: var(--black-soft); }

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  max-width: 800px;
  margin: 0 auto;
}

.reel-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--black-soft);
  text-decoration: none;
  transition: all 0.4s var(--ease-lux);
}

.reel-card:hover {
  z-index: 2;
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.reel-thumb {
  aspect-ratio: 9/16;
  overflow: hidden;
  position: relative;
}

.reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-lux);
}

.reel-card:hover .reel-thumb img {
  transform: scale(1.08);
}

.reel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s;
}

.reel-card:hover .reel-play {
  opacity: 1;
}

.reel-play svg {
  width: 48px;
  height: 48px;
  color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.reel-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.9);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 2;
}

.reel-likes {
  color: var(--gold-light);
}

.reels-cta { text-align: center; margin-top: 44px; }

/* ===== TRUST ===== */
.trust-section {
  background: var(--black-soft);
  position: relative;
}

.trust-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.06);
}

.trust-item {
  padding: 50px 32px;
  text-align: center;
  background: var(--black-soft);
  transition: background 0.3s;
  position: relative;
}

.trust-item:hover { background: var(--black-card); }

.trust-icon {
  font-size: 1.8rem; margin-bottom: 20px; display: block;
  color: var(--gold);
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 1.15rem; color: var(--white);
  margin-bottom: 12px; font-weight: 400;
}

.trust-text { font-size: 0.83rem; color: var(--gray-lux); line-height: 1.8; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-img { height: 72px; width: auto; }

.footer-desc {
  font-size: 0.82rem; color: var(--gray-lux);
  max-width: 280px; font-weight: 300; line-height: 1.8;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.95rem; color: var(--gold);
  margin-bottom: 20px; font-weight: 400;
  letter-spacing: 1px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: var(--gray-lux); text-decoration: none;
  font-size: 0.82rem; transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: rgba(122,117,112,0.5);
}

.footer-social { display: flex; gap: 24px; }

.footer-social a {
  color: rgba(122,117,112,0.5); text-decoration: none;
  transition: color 0.3s; font-size: 0.72rem; letter-spacing: 1px;
}

.footer-social a:hover { color: var(--gold); }

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 90;
  width: 54px; height: 54px;
  background: #1FAD51;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(31,173,81,0.35);
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(31,173,81,0.45);
}

.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .header {
    padding: 20px 0;
  }
  .header.scrolled {
    padding: 12px 0;
  }
  .logo-img {
    height: 40px;
  }
  .nav {
    gap: 28px;
  }

  .hero-brand {
    margin-bottom: 20px;
  }
  .hero-eyebrow {
    margin-bottom: 20px;
  }
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 8px;
  }
  .hero-title-sub {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 22px;
  }
  .hero-desc {
    margin-bottom: 32px;
    font-size: 0.9rem;
  }
  .hero-actions .btn {
    padding: 13px 36px;
  }
}

@media (max-height: 850px) and (min-width: 769px) {
  .hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    margin-top: 20px;
  }
  .hero-brand {
    margin-bottom: 14px;
  }
  .hero-eyebrow {
    margin-bottom: 14px;
  }
  .hero-title {
    font-size: clamp(2.2rem, 6vh, 4rem);
    margin-bottom: 6px;
  }
  .hero-title-sub {
    font-size: clamp(1rem, 2vh, 1.3rem);
    margin-bottom: 18px;
  }
  .hero-desc {
    margin-bottom: 24px;
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .hero-scroll {
    bottom: 20px;
  }
  .hero-scroll-line {
    height: 30px;
  }
}

@media (max-height: 700px) and (min-width: 769px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-scroll {
    display: none;
  }
  .hero-brand {
    margin-bottom: 8px;
  }
  .hero-eyebrow {
    margin-bottom: 8px;
  }
  .hero-title-sub {
    margin-bottom: 12px;
  }
  .hero-desc {
    margin-bottom: 18px;
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .carousel-inner { grid-template-columns: 280px 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }

  .header { padding: 16px 0; }
  .logo-img { height: 40px; }

  .menu-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }

  .nav {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    z-index: 999;
    border: none;
    padding: 100px 24px 50px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav.active { display: flex; animation: navFadeIn 0.3s ease; }

  @keyframes navFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
  }

  .nav-close:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
  }

  .nav a {
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: var(--white-smoke);
    padding: 14px 0;
    width: 100%;
    text-align: center;
  }

  .nav a::after { display: none; }

  .lang-switch {
    margin: 12px 0 0;
    padding: 16px 0 0;
    border-left: none;
    border-top: 1px solid rgba(201,168,76,0.15);
    gap: 12px;
  }

  .lang-btn {
    font-size: 0.8rem;
    padding: 10px 6px;
  }

  .hero { min-height: 90vh; padding: 120px 0 80px; display: flex; align-items: center; justify-content: center; }
  .hero-content { padding: 0 24px; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,1) 100%); }
  .hero-title { font-size: 2.6rem; }
  .hero-title-sub { font-size: 1.25rem; margin-bottom: 24px; }
  .hero-desc { font-size: 0.92rem; max-width: 440px; margin-bottom: 36px; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 5px; gap: 8px; margin-bottom: 20px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 24px; }
  .hero-brand { margin-bottom: 22px; }
  .hero-actions { gap: 12px; flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; padding: 13px 24px; font-size: 0.72rem; }
  .hero-scroll { bottom: 20px; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 32px; }
  .section-label { font-size: 0.55rem; letter-spacing: 5px; gap: 10px; }
  .section-label::before, .section-label::after { width: 22px; }
  .section-desc { font-size: 0.85rem; padding: 0; }
  .section-title { font-size: 2rem; }

  .carousel-inner { grid-template-columns: 1fr; max-height: none; }
  .carousel-media { aspect-ratio: 9/16; max-height: none; }
  .carousel-media video { object-fit: cover; }
  .carousel-media-overlay { display: block; background: linear-gradient(to bottom, transparent 60%, rgba(14,14,14,0.97) 100%); }
  .carousel-info { padding: 26px 22px 32px; }
  .carousel-title { font-size: 1.3rem; }
  .carousel-number { font-size: 3.5rem; top: 12px; right: 16px; }
  .carousel-desc { font-size: 0.82rem; }
  .carousel-controls { gap: 12px; margin-top: 24px; }
  .carousel-btn { width: 42px; height: 42px; font-size: 0.85rem; }

  .timeline-nav { margin-bottom: 28px; padding: 0 12px; }
  .timeline-node-label { display: none; }
  .timeline-node-dot { width: 12px; height: 12px; }

  .productos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .producto-info { padding: 14px 16px 18px; }
  .producto-name { font-size: 0.9rem; }
  .producto-cat { font-size: 0.6rem; letter-spacing: 2.5px; }
  .producto-cta { font-size: 0.7rem; }
  .is-landscape .producto-thumb img { padding: 8%; }

  .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }

  .trust-grid { grid-template-columns: 1fr; gap: 1px; }
  .trust-item { padding: 36px 24px; }
  .trust-title { font-size: 1rem; }
  .trust-text { font-size: 0.8rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand .footer-desc { margin: 0 auto; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .btn { padding: 12px 24px; font-size: 0.68rem; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }

  .header { padding: 14px 0; }
  .logo-img { height: 36px; }

  .hero { min-height: 90vh; padding: 100px 0 60px; }
  .hero-content { padding: 0 16px; }
  .hero-title { font-size: 2.2rem; }
  .hero-title-sub { font-size: 1.15rem; margin-bottom: 20px; }
  .hero-desc { font-size: 0.88rem; max-width: 360px; margin-bottom: 30px; }
  .hero-eyebrow { font-size: 0.55rem; letter-spacing: 4px; gap: 6px; margin-bottom: 16px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 18px; }
  .hero-brand { margin-bottom: 18px; }
  .hero-actions .btn { max-width: 240px; padding: 11px 20px; font-size: 0.7rem; }
  .hero-scroll { display: flex; bottom: 15px; }
  .hero-scroll-line { height: 24px; }

  .section { padding: 48px 0; }
  .section-header { margin-bottom: 26px; }
  .section-title { font-size: 1.7rem; }
  .section-desc { font-size: 0.8rem; }
  .section-label { font-size: 0.5rem; letter-spacing: 4px; gap: 8px; }
  .section-label::before, .section-label::after { width: 18px; }

  .productos-grid { gap: 10px; }
  .producto-name { font-size: 0.85rem; }
  .producto-info { padding: 12px 14px 16px; }
  .producto-cta { font-size: 0.65rem; }

  .carousel-info { padding: 22px 18px 28px; }
  .carousel-title { font-size: 1.2rem; }
  .carousel-desc { font-size: 0.78rem; }
  .carousel-number { font-size: 3rem; top: 10px; right: 14px; }
  .carousel-controls { gap: 10px; margin-top: 18px; }
  .carousel-btn { width: 38px; height: 38px; font-size: 0.8rem; }
  .carousel-chapter-tag { font-size: 0.55rem; letter-spacing: 3px; }

  .btn { padding: 10px 18px; font-size: 0.63rem; }

  .trust-item { padding: 28px 18px; }

  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
}

@media (max-width: 420px) {
  .container { padding: 0 14px; }

  .header { padding: 12px 0; }
  .logo-img { height: 32px; }

  .hero { min-height: 90vh; padding: 90px 0 60px; }
  .hero-content { padding: 0 14px; }
  .hero-title { font-size: 1.9rem; }
  .hero-title-sub { font-size: 1.05rem; margin-bottom: 16px; }
  .hero-desc { font-size: 0.82rem; max-width: 280px; margin-bottom: 24px; }
  .hero-eyebrow { font-size: 0.5rem; letter-spacing: 3px; gap: 6px; margin-bottom: 14px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 14px; }
  .hero-brand { margin-bottom: 16px; }
  .hero-actions .btn { max-width: 200px; padding: 10px 16px; font-size: 0.68rem; letter-spacing: 2px; }

  .section { padding: 40px 0; }
  .section-header { margin-bottom: 22px; }
  .section-title { font-size: 1.4rem; }
  .section-desc { font-size: 0.75rem; }

  .productos-grid { gap: 8px; }
  .producto-info { padding: 10px 12px 14px; }
  .producto-name { font-size: 0.78rem; }
  .producto-cat { font-size: 0.5rem; letter-spacing: 2px; }
  .producto-cta { font-size: 0.6rem; }

  .carousel-info { padding: 18px 14px 24px; }
  .carousel-title { font-size: 1.05rem; }
  .carousel-desc { font-size: 0.72rem; }
  .carousel-number { font-size: 2.5rem; top: 8px; right: 12px; }
  .carousel-chapter-tag { font-size: 0.5rem; letter-spacing: 2px; }
  .carousel-btn { width: 34px; height: 34px; font-size: 0.7rem; }

  .btn { padding: 9px 14px; font-size: 0.58rem; letter-spacing: 2px; }

  .trust-item { padding: 24px 16px; }
  .trust-title { font-size: 0.9rem; }
  .trust-text { font-size: 0.73rem; }

  .footer-grid { gap: 20px; }
}

@media (max-width: 350px) {
  .container { padding: 0 10px; }

  .hero-title { font-size: 1.6rem; }
  .hero-desc { font-size: 0.78rem; max-width: 240px; }
  .hero-actions .btn { max-width: 180px; padding: 9px 14px; font-size: 0.62rem; }
}
