/* ============================================================
   Just For You Drink · Estilo premium 3D
   Negro + dorado · Crimson Text + Inter
   ============================================================ */

:root {
  --bg: #0a0908;
  --bg-soft: #12100c;
  --bg-card: #16130e;
  --gold: #e6c068;
  --gold-soft: #f2d9a0;
  --text: #f5f1e8;
  --text-dim: #b8b1a3;
  --border: rgba(230, 192, 104, 0.25);
  --font-head: "Crimson Text", Georgia, serif;
  --font-body: "Inter", -apple-system, system-ui, sans-serif;
  --maxw: 1140px;
  --radius: 16px;
  --header-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

img, video { max-width: 100%; display: block; height: auto; }
a { color: var(--gold); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }

.section-eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.section-title {
  color: var(--gold);
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.section-subtitle {
  color: var(--text-dim);
  max-width: 640px;
  font-size: 1.05rem;
}

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-brand {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.loader-bar {
  width: 240px;
  height: 2px;
  background: rgba(230, 192, 104, 0.2);
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 2px;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: width 0.3s ease;
}
.loader-sub { font-size: 0.85rem; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; }

/* ============ CURSOR ============ */
.cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s, background 0.2s;
  display: none;
}
@media (pointer: fine) {
  .cursor { display: block; }
}
.cursor.hovering { width: 44px; height: 44px; background: rgba(230, 192, 104, 0.15); }

/* ============ BOTONES ============ */
.btn {
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1px solid transparent;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  display: inline-flex;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #0a0908; box-shadow: 0 8px 24px rgba(230, 192, 104, 0.3); }
.btn-primary:hover { background: var(--gold-soft); box-shadow: 0 10px 28px rgba(230, 192, 104, 0.4); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: rgba(230, 192, 104, 0.1); }

/* ============ HEADER ============ */
.header {
  z-index: 100;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 9, 8, 0.92);
  position: fixed;
  top: 0; left: 0; right: 0;
}
.header-inner {
  justify-content: space-between;
  align-items: center;
  height: var(--header-h);
  display: flex;
}
.brand { color: var(--text); align-items: center; gap: 12px; display: flex; }
.brand img { border-radius: 50%; width: 42px; height: 42px; box-shadow: 0 0 0 1px var(--border); }
.brand-name { font-family: var(--font-head); color: var(--gold); font-size: 1.25rem; font-weight: 700; line-height: 1.1; }
.brand-sub { letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); font-size: 0.72rem; }

.nav { align-items: center; gap: 28px; display: flex; }
.nav a { color: var(--text); font-size: 0.95rem; font-weight: 500; position: relative; }
.nav a:hover { color: var(--gold); }
.nav .btn { padding: 10px 22px; font-size: 0.9rem; }

.nav-toggle {
  color: var(--gold);
  cursor: pointer;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  display: none;
}

@media (width <= 960px) {
  .nav-toggle { display: block; }
  .nav {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 20px;
    transition: transform 0.2s, opacity 0.2s;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    transform: scaleY(0);
  }
  .nav a { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 13px 0; }
  .nav .btn { margin-top: 16px; }
  #nav-toggle:checked ~ .nav { opacity: 1; pointer-events: auto; transform: scaleY(1); }
}

/* ============ HERO 3D ============ */
.hero {
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  display: flex;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
  perspective: 900px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(230,192,104,0.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #14110c 55%, var(--bg) 100%);
}
.hero-content {
  z-index: 3;
  text-align: center;
  max-width: 820px;
  padding: 40px 24px;
  position: relative;
}
.hero-badge {
  border: 1px solid var(--gold);
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 26px;
  padding: 8px 18px;
  font-size: 0.82rem;
  display: inline-block;
}
.hero-title {
  color: var(--text);
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 700;
}
.hero-drink {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(230,192,104,0.35);
}
.hero-sub {
  color: var(--text);
  margin-bottom: 38px;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 300;
}
.hero-actions { flex-wrap: wrap; justify-content: center; gap: 16px; display: flex; }

/* Fondo de vídeo del hero */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(10,9,8,0.35), rgba(10,9,8,0.75) 70%),
    linear-gradient(180deg, rgba(10,9,8,0.65) 0%, rgba(10,9,8,0.35) 50%, rgba(10,9,8,0.75) 100%);
}

/* Escena 3D de fondo: hielos, rodajas, burbujas y destellos */
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform-style: preserve-3d;
  pointer-events: none;
}
.ice-cube, .slice, .bubble, .spark {
  position: absolute;
  left: 50%;
  top: 50%;
}

.ice-cube {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  transform-style: preserve-3d;
  animation: floatY 9s ease-in-out infinite;
}
.ice-1 { transform: translate(-420px, -70px) rotateX(20deg) rotateZ(15deg); animation-delay: 0s; }
.ice-2 { transform: translate(400px, 20px) rotateX(-25deg) rotateZ(-10deg); animation-delay: 2s; }
.ice-3 { transform: translate(-300px, 130px) rotateX(15deg) rotateZ(30deg); animation-delay: 4s; }
/* cara de cubo de hielo con relieve */
.ice-cube::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(230,192,104,0.7), rgba(230,192,104,0.15));
  box-shadow: inset 0 0 12px rgba(255,255,255,0.35);
}
.ice-cube::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 1px solid rgba(230,192,104,0.5);
}

.slice {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 6px solid var(--gold);
  background: rgba(242,217,160,0.25);
  box-shadow: 0 0 30px rgba(230,192,104,0.4), inset 0 0 14px rgba(230,192,104,0.5);
  animation: spinSlice 14s linear infinite, floatY 11s ease-in-out infinite;
}
.slice::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px dashed rgba(230,192,104,0.6);
  border-radius: 50%;
}
.slice-1 { transform: translate(-180px, -150px); animation-delay: 0s, 1s; }
.slice-2 { transform: translate(260px, 90px) scale(0.7); animation-delay: 2s, 4s; }

.bubble {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(242,217,160,0.5);
  animation: rise 6s ease-in infinite;
}
.b-1 { transform: translate(-520px, 60px); animation-delay: 0s; }
.b-2 { transform: translate(-180px, 120px); animation-delay: 1.4s; }
.b-3 { transform: translate(120px, 40px); animation-delay: 2.6s; }
.b-4 { transform: translate(340px, -40px); animation-delay: 3.8s; }
.b-5 { transform: translate(-60px, -140px); animation-delay: 5s; }

.spark {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px 4px rgba(230,192,104,0.6);
  animation: sparkle 4s ease-in-out infinite;
}
.s-1 { transform: translate(150px, -120px); animation-delay: 0s; }
.s-2 { transform: translate(-260px, -30px); animation-delay: 1.2s; }
.s-3 { transform: translate(20px, 100px); animation-delay: 2.4s; }

@keyframes floatY {
  0%, 100% { margin-top: -17px; }
  50% { margin-top: 20px; }
}
@keyframes spinSlice {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes rise {
  0% { transform: translateY(60px); opacity: 0; }
  20% { opacity: 0.8; }
  100% { transform: translateY(-200px); opacity: 0; }
}
@keyframes sparkle {
  0%, 100% { opacity: 0.2; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.4); }
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px;
}
.hero-scroll span {
  width: 3px;
  height: 9px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollDot 1.6s ease-in-out infinite;
}
.hero-scroll span:nth-child(2) { animation-delay: 0.2s; }
.hero-scroll span:nth-child(3) { animation-delay: 0.4s; }
@keyframes scrollDot {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 18px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
}
.marquee-track i { color: var(--gold); font-style: normal; opacity: 0.6; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ NOSOTROS ============ */
.sobre-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  display: grid;
}
.sobre-text p { color: var(--text-dim); margin-bottom: 16px; font-size: 1.05rem; }
.sobre-text p strong { color: var(--gold); }
.sobre-media { perspective: 1000px; }
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.sobre-media .tilt-card img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.quote {
  border-left: 3px solid var(--gold);
  font-family: var(--font-head);
  color: var(--gold-soft);
  margin-top: 26px;
  padding: 20px 24px;
  font-size: 1.35rem;
  font-style: italic;
}

.stats { display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.stat { text-align: left; }
.stat-num { font-family: var(--font-head); font-size: 2.2rem; color: var(--gold); display: block; font-weight: 700; }
.stat-label { font-size: 0.85rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

@media (width <= 900px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============ PACKS SCROLL HORIZONTAL 3D ============ */
.section-packs { padding-bottom: 60px; }
.packs-viewport {
  position: relative;
  overflow: hidden;
  padding: 40px 0 20px;
  perspective: 1200px;
  cursor: grab;
}
.packs-viewport:active { cursor: grabbing; }
.packs-track {
  display: flex;
  gap: 24px;
  padding: 20px max(24px, calc((100vw - var(--maxw)) / 2 + 24px));
  width: max-content;
  will-change: transform;
  transform-style: preserve-3d;
}
.pack {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  flex-direction: column;
  padding: 34px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  position: relative;
  width: 300px;
  flex-shrink: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.pack:hover { border-color: var(--border); box-shadow: 0 24px 60px rgba(0,0,0,0.6); }
.pack-highlight { border: 2px solid var(--gold); background: linear-gradient(180deg, rgba(230,192,104,0.12), var(--bg-card) 55%); }
.pack-badge {
  background: var(--gold);
  color: #0a0908;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.74rem;
  font-weight: 700;
  position: absolute;
  top: -14px;
  right: 20px;
}
.pack-name { color: var(--gold); margin-bottom: 16px; font-size: 1.35rem; }
.pack-price { align-items: baseline; gap: 8px; margin-bottom: 20px; display: flex; }
.pack-price .amount { font-family: var(--font-head); color: var(--text); font-size: 2.6rem; font-weight: 700; }
.pack-price .per { color: var(--text-dim); font-size: 0.9rem; }
.pack ul { flex: 1; margin-bottom: 24px; list-style: none; }
.pack li {
  color: var(--text-dim);
  margin-bottom: 10px;
  padding-left: 22px;
  font-size: 0.95rem;
  position: relative;
}
.pack li::before {
  content: "";
  background: var(--gold);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 10px;
  left: 2px;
}
.pack .btn { width: 100%; padding: 12px 20px; font-size: 0.9rem; }
.packs-progress {
  height: 3px;
  background: rgba(230,192,104,0.15);
  width: min(80%, 700px);
  margin: 10px auto 0;
  border-radius: 3px;
  overflow: hidden;
}
.packs-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 3px;
}
.packs-note { text-align: center; color: var(--text-dim); margin-top: 28px; font-size: 0.95rem; }
.packs-note strong { color: var(--gold); }

/* ============ GALERÍA ============ */
.galeria-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
  display: grid;
}
.galeria-item {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  perspective: 800px;
}
.galeria-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.35s;
}
.galeria-item:hover img { transform: scale(1.06); }

.galeria-cta {
  background:
    radial-gradient(ellipse at center, rgba(230,192,104,0.18), transparent 70%),
    var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.galeria-cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--gold);
}
.galeria-cta-icon {
  font-size: 2.2rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.galeria-cta a:hover .galeria-cta-icon { background: rgba(230,192,104,0.15); transform: scale(1.08); }
.galeria-cta-txt { font-size: 0.95rem; }

.video-section { margin-top: 40px; display: grid; gap: 20px; }
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  aspect-ratio: 16 / 9;
  perspective: 900px;
}
.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.85);
}
.video-card-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(230,192,104,0.12), transparent 55%),
    linear-gradient(180deg, rgba(10,9,8,0.45) 0%, rgba(10,9,8,0.15) 45%, rgba(10,9,8,0.6) 100%);
  pointer-events: none;
}
.video-card-caption {
  position: absolute;
  left: 26px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-card-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--gold);
}
.video-card-title {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--text);
}

/* Capas flotantes encima de los vídeos (efecto 3D) */
.video-card-fx {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.fx-slice {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 5px solid var(--gold);
  background: rgba(242,217,160,0.2);
  box-shadow: 0 0 24px rgba(230,192,104,0.4), inset 0 0 10px rgba(230,192,104,0.4);
  animation: floatFx 9s ease-in-out infinite, spinSlice 16s linear infinite;
}
.fx-s1 { left: 12%; top: 18%; animation-delay: 0s, 0s; }
.fx-s2 { right: 14%; top: 60%; animation-delay: 2.5s, 1s; transform: scale(0.7); }
.fx-bubble {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(242,217,160,0.55);
  animation: rise 7s ease-in infinite;
}
.fx-b1 { left: 30%; bottom: 10%; animation-delay: 0s; }
.fx-b2 { left: 55%; bottom: 5%; animation-delay: 1.8s; }
.fx-b3 { left: 80%; bottom: 12%; animation-delay: 3.4s; }
@keyframes floatFx {
  0%, 100% { margin-top: -12px; }
  50% { margin-top: 14px; }
}

@media (width <= 900px) { .galeria-grid { grid-template-columns: 1fr 1fr; } }
@media (width <= 560px) { .galeria-grid { grid-template-columns: 1fr; } }

/* ============ TESTIMONIOS ============ */
.testi-carousel { max-width: 760px; margin: 44px auto 0; position: relative; }
.testi-track { overflow: hidden; }
.testi-slide {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.testi-slide blockquote {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 18px;
}
.testi-slide figcaption { display: flex; flex-direction: column; }
.testi-slide figcaption strong { color: var(--gold); font-size: 1rem; }
.testi-slide figcaption span { color: var(--text-dim); font-size: 0.85rem; }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 24px; }
.testi-arrow {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.testi-arrow:hover { background: rgba(230,192,104,0.12); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(230,192,104,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.testi-dot.active { background: var(--gold); transform: scale(1.3); }
.testi-note { text-align: center; color: var(--text-dim); margin-top: 26px; font-size: 0.95rem; }

/* ============ TODO INCLUIDO ============ */
.features-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
  display: grid;
}
.feature {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature:hover { border-color: var(--border); }
.feature-icon { margin-bottom: 12px; font-size: 1.6rem; color: var(--gold); }
.feature h3 { color: var(--gold); margin-bottom: 8px; font-size: 1.15rem; }
.feature p { color: var(--text-dim); font-size: 0.94rem; }

@media (width <= 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (width <= 560px) { .features-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-item input { display: none; }
.faq-question {
  cursor: pointer;
  color: var(--text);
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  font-size: 1.02rem;
  font-weight: 600;
  display: flex;
}
.faq-question::after {
  content: "+";
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.5rem;
  transition: transform 0.2s;
}
.faq-item input:checked + .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; transition: max-height 0.35s ease; overflow: hidden; }
.faq-answer p { color: var(--text-dim); padding: 0 4px 20px; font-size: 0.97rem; }
.faq-item input:checked ~ .faq-answer { max-height: 500px; }

/* ============ CONTACTO ============ */
.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  margin-top: 44px;
  display: grid;
}
.contact-actions { flex-direction: column; gap: 14px; display: flex; }
.contact-row {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  color: var(--text);
}
.contact-row:hover { border-color: var(--border); transform: translateX(4px); }
.contact-row .icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  background: rgba(230,192,104,0.12);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  display: flex;
}
.icon { width: 44px; }
.contact-row .icon svg { display: block; }
.contact-row .label { text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); font-size: 0.8rem; }
.contact-row .value { color: var(--text); font-weight: 600; }
.contact-info p { color: var(--text-dim); margin-bottom: 20px; font-size: 1.05rem; }
.contact-extra { flex-wrap: wrap; gap: 14px; margin-top: 26px; display: flex; }

@media (width <= 900px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 48px 0;
}
.footer img { margin: 0 auto 12px; }
.footer .brand-name { margin-bottom: 10px; font-size: 1.4rem; }
.footer p { color: var(--text-dim); margin-bottom: 6px; font-size: 0.9rem; }
.footer-links { flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 16px; display: flex; }
.footer-links a { font-size: 0.9rem; }

/* ============ WHATSAPP FLOTANTE ============ */
.whatsapp-float {
  z-index: 90;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  font-size: 1.7rem;
  transition: transform 0.15s, box-shadow 0.2s;
  display: flex;
  position: fixed;
  bottom: 22px;
  right: 22px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6); }

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ============ FOCUS VISIBLE (accesibilidad) ============ */
a:focus-visible, button:focus-visible, .faq-question:focus-visible, label:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Scrollbar sutil */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(230,192,104,0.3); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: rgba(230,192,104,0.5); }
