:root {
  --black: #0a0604;
  --brown: #1e1008;
  --brown2: #2c1a0a;
  --gold: #c9a24a;
  --gold2: #e8c96a;
  --cream: #f5ede0;
  --muted: #7a6450;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

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

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

.snap-container {
  /* Sin scroll snap — página normal */
}

.snap-section {
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
}

.section-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1.5rem 2.5rem;
  gap: 0.9rem;
}

.eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
}

.section-h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--muted);
}

.btn-primary {
  padding: 1rem;
  background: var(--black);
  color: var(--gold);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(201, 162, 74, 0.2);
}

.btn-primary:hover {
  opacity: 0.85;
  box-shadow: 0 0 25px rgba(201, 162, 74, 0.4);
}

.btn-whatsapp {
  padding: 1rem;
  background: #25d366;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: opacity 0.3s;
  text-decoration: none;
}

.btn-whatsapp:hover {
  opacity: 0.9;
  text-decoration: none;
}

.ai-note {
  font-size: 0.62rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

#s2 { background: var(--brown); }
#s3 { background: #f5ede0; }
#s4 { background: var(--black); }
#s5 { background: var(--brown); }

#s3 .eyebrow { color: var(--brown2); }
#s3 .section-h2 { color: var(--black); }
#s3 .section-h2 em { color: var(--brown2); }
#s3 .section-sub { color: #7a6450; }

@media (min-width: 768px) {
  .section-inner { padding: 5rem 3rem; }
}