/* ============================================
   LUMINA · LUXURY EVENTS WEBSITE
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #131313;
  --black-warm: #1a1612;
  --cream: #f5f1e8;
  --cream-soft: #ede7d8;
  --gold: #d4af37;
  --gold-bright: #f4d35e;
  --gold-deep: #b8860b;
  --gold-soft: #e8c560;
  --venice-gold: #c9a85a;
  --venice-burgundy: #6b1820;
  --venice-cream: #f4ecd6;
  --fire-orange: #ff6b1a;
  --fire-red: #d93208;
  --fire-deep: #5c1801;

  --font-display: 'Cinzel', serif;
  --font-italian: 'Italiana', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-script: 'Dancing Script', cursive;
  --font-sans: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   CURSOR PERSONALIZADO
   ============================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transition: transform 0.15s ease-out, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold-bright);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--gold-bright);
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), width 0.3s, height 0.3s;
}
.cursor-ring.hover { width: 60px; height: 60px; border-color: var(--gold); }

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 9998;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--gold);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  z-index: 100;
  transition: all 0.4s ease;
  background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, transparent 100%);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.nav-logo img {
  height: 60px;
  width: auto;
  transition: transform 0.4s;
  filter: drop-shadow(0 4px 12px rgba(244,211,94,0.2));
}
.nav.scrolled .nav-logo img { height: 48px; }
.nav-logo:hover img { transform: scale(1.05) rotate(-3deg); }

.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links a {
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
  color: var(--cream-soft);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--gold);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: transparent;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: -1;
}
.nav-cta:hover { color: var(--black); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta-dot {
  width: 8px; height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 40%, rgba(10,10,10,0.95) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(255,107,26,0.1) 0%, transparent 60%),
    url('assets/hero-bg.jpg') center/cover no-repeat,
    linear-gradient(180deg, #0a0a0a 0%, #1a1208 60%, #0a0a0a 100%);
  background-blend-mode: normal;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(244,211,94,0.4) 1px, transparent 2px),
    radial-gradient(circle at 70% 80%, rgba(244,211,94,0.3) 1px, transparent 2px),
    radial-gradient(circle at 50% 50%, rgba(244,211,94,0.2) 1px, transparent 2px);
  background-size: 200px 200px, 250px 250px, 300px 300px;
  opacity: 0.6;
  animation: drift 30s linear infinite;
}
@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-200px, -200px); }
}

.hero-particles {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow:
    100px 200px var(--gold-bright), 300px 100px var(--gold-soft),
    500px 400px var(--gold), 700px 250px var(--gold-bright),
    900px 500px var(--gold-soft), 1100px 150px var(--gold),
    150px 600px var(--gold-bright), 400px 700px var(--gold-soft),
    600px 800px var(--gold), 800px 600px var(--gold-bright),
    1000px 750px var(--gold-soft), 1200px 450px var(--gold);
  animation: float-up 20s linear infinite;
}
.hero-particles::after {
  animation-delay: -10s;
  animation-duration: 25s;
}
@keyframes float-up {
  from { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  to { transform: translateY(-100vh); opacity: 0; }
}

.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1100px;
}

.hero-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
.hero-eyebrow .line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
@keyframes fadeIn {
  to { opacity: 1; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--cream);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.title-word {
  display: inline-block;
  margin: 0 0.15em;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--d, 0s);
}
.title-word.italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-bright);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--d, 0s);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--cream-soft);
  margin-bottom: 3rem;
}
.hero-tagline em { font-style: italic; }
.hero-tagline .accent {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.hero-actions {
  display: flex; gap: 1.5rem; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.btn-primary, .btn-ghost, .btn-fire, .btn-venice, .btn-juanes, .btn-zancos, .btn-trees, .btn-final, .btn-final-ghost {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background: var(--gold-bright);
  color: var(--black);
  box-shadow: 0 8px 30px rgba(244,211,94,0.3);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(244,211,94,0.5); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,241,232,0.3);
}
.btn-ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(244,211,94,0.05);
}

.hero-stats {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.stat {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.stat-value-row {
  display: inline-flex;
  align-items: baseline;
  gap: 0.05em;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--gold-bright);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-top: 0.8rem;
}
.stat-divider {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.5;
  align-self: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.5;
}
.scroll-line {
  width: 1px; height: 35px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--gold-bright);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  to { top: 100%; }
}
@media (max-height: 850px) {
  .hero-scroll-hint { display: none; }
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  padding: 10rem 3rem;
  background: var(--black);
  position: relative;
}
.intro-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.intro-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  margin-bottom: 2rem;
}
.intro-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
}
.intro-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}
.intro-title .gold { color: var(--gold-bright); }

.intro-body p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--cream-soft);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.intro-body p strong { color: var(--gold-bright); font-weight: 500; }
.intro-body p em { font-style: italic; color: var(--cream); }

.intro-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.pillar {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.pillar-icon {
  font-size: 1.8rem;
  color: var(--gold-bright);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.pillar-text { flex: 1; }
.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.pillar p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream-soft);
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .intro { padding: 6rem 1.5rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================
   FIRE SECTION · INMERSIVA
   ============================================ */
.fire-section {
  position: relative;
  padding: 10rem 3rem;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}
.fire-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255,107,26,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(217,50,8,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255,140,0,0.2) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #1a0800 50%, #2a1000 100%);
  z-index: -2;
}
.fire-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 0.6 0 0 0 0 0.1 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.3;
  mix-blend-mode: overlay;
}
.fire-embers {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
}
.fire-embers::before,
.fire-embers::after {
  content: '';
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--fire-orange);
  box-shadow:
    100px 0 var(--fire-orange), 200px 100px #ffb04a,
    300px 200px var(--fire-red), 400px 50px var(--fire-orange),
    500px 300px #ffb04a, 600px 150px var(--fire-orange),
    700px 400px #ffb04a, 800px 250px var(--fire-red),
    900px 350px var(--fire-orange), 1000px 100px #ffb04a,
    1100px 450px var(--fire-orange), 50px 500px var(--fire-red),
    150px 600px var(--fire-orange), 350px 700px #ffb04a,
    550px 750px var(--fire-orange);
  animation: ember-rise 8s linear infinite;
  filter: blur(0.5px);
}
.fire-embers::after {
  animation-delay: -4s;
  animation-duration: 12s;
}
@keyframes ember-rise {
  from { transform: translateY(100vh) scale(1); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 0.6; }
  to { transform: translateY(-20vh) scale(0.2); opacity: 0; }
}
.fire-glow {
  position: absolute;
  bottom: -20%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 80%;
  background: radial-gradient(ellipse, rgba(255,107,26,0.4) 0%, transparent 60%);
  filter: blur(80px);
  z-index: -1;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.fire-content {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fire-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  color: var(--gold-bright);
}
.fire-eyebrow { color: #ffb04a; }
.fire-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 2rem;
  text-shadow: 0 0 80px rgba(255,107,26,0.4);
}
.fire-word { display: block; }
.fire-script {
  font-family: var(--font-script);
  font-weight: 500;
  font-style: italic;
  font-size: 1.2em;
  color: var(--fire-orange);
  margin-top: -0.2em;
  text-shadow: 0 0 40px rgba(255,107,26,0.6);
}
.fire-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  color: var(--cream-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.fire-sub em { color: var(--gold-bright); font-style: italic; }

.fire-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 240px;
  gap: 1rem;
  margin-bottom: 4rem;
}
.fire-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255,107,26,0.2);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
}
.fire-card-main { grid-row: span 2; }
.fire-card-wide { grid-column: span 2; }
.fire-card-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.fire-card:hover .fire-card-img { transform: scale(1.1); }
.fire-card:hover { border-color: var(--fire-orange); box-shadow: 0 20px 60px rgba(255,107,26,0.3); }

.fire-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
  color: var(--cream);
}
.fire-card-tag {
  font-size: 0.9rem;
  color: var(--gold-bright);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.fire-card-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.fire-card-overlay p {
  font-family: var(--font-serif);
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.fire-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,107,26,0.3);
  border-radius: 4px;
  backdrop-filter: blur(20px);
  flex-wrap: wrap;
}
.fire-detail {
  display: flex; flex-direction: column; align-items: center;
}
.detail-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #ffb04a;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.detail-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
}
.fire-price .detail-value {
  color: var(--fire-orange);
  font-size: 2.2rem;
  text-shadow: 0 0 20px rgba(255,107,26,0.5);
}

.btn-fire {
  background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
  color: var(--cream);
  padding: 1.1rem 2rem;
  box-shadow: 0 8px 30px rgba(255,107,26,0.4);
}
.btn-fire:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255,107,26,0.6);
  background: linear-gradient(135deg, var(--fire-orange), #ffb04a);
}

@media (max-width: 900px) {
  .fire-section { padding: 6rem 1.5rem; }
  .fire-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 200px 200px;
  }
  .fire-card-main { grid-column: span 2; grid-row: 1; }
  .fire-card-wide { grid-column: span 2; }
  .fire-details { gap: 1.5rem; padding: 1.5rem; }
}

/* ============================================
   VENICE SECTION · INMERSIVA ITALIA
   ============================================ */
.venice-section {
  position: relative;
  padding: 8rem 3rem;
  background:
    linear-gradient(180deg, #1a1410 0%, #2a1f15 50%, #1a1410 100%);
  overflow: hidden;
}
.venice-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,168,90,0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(107,24,32,0.2) 0%, transparent 50%);
  z-index: 0;
}
.venice-bg::before {
  /* Patrón damasco veneciano */
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      transparent 0px, transparent 40px,
      rgba(201,168,90,0.03) 40px, rgba(201,168,90,0.03) 41px),
    repeating-linear-gradient(-45deg,
      transparent 0px, transparent 40px,
      rgba(201,168,90,0.03) 40px, rgba(201,168,90,0.03) 41px);
  opacity: 0.5;
}
.venice-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 20%, rgba(0,0,0,0.5) 80%);
}

.venice-canal {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(20,40,50,0.3) 30%,
    rgba(10,25,35,0.7) 100%);
  z-index: 0;
}
.venice-canal::before {
  /* Reflejos de agua */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, transparent 50%, rgba(201,168,90,0.05) 100%),
    repeating-linear-gradient(0deg,
      transparent 0px, transparent 8px,
      rgba(201,168,90,0.08) 8px, rgba(201,168,90,0.08) 9px);
  animation: water-shimmer 8s ease-in-out infinite;
}
@keyframes water-shimmer {
  0%, 100% { opacity: 0.7; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(2px); }
}

.venice-ornament {
  position: absolute; left: 50%;
  transform: translateX(-50%);
  width: min(500px, 80%);
  color: var(--venice-gold);
  z-index: 2;
}
.venice-ornament-top { top: 3rem; }
.venice-ornament-bottom { bottom: 3rem; }

.venice-content {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 0;
}

.venice-flag {
  display: inline-flex;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.venice-flag span {
  width: 20px; height: 14px;
  display: block;
}
.flag-green { background: #008c45; }
.flag-white { background: #f4f5f0; }
.flag-red { background: #cd212a; }

.venice-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  color: var(--venice-gold);
  margin-bottom: 1.5rem;
}

.venice-title {
  font-family: var(--font-italian);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--venice-cream);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.venice-line {
  display: block;
}
.venice-amp {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--venice-gold);
  font-size: 0.7em;
  margin: 0.2em 0;
}

.venice-italian-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--venice-gold);
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
}

.venice-features {
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(201,168,90,0.3);
  border-bottom: 1px solid rgba(201,168,90,0.3);
}
.venice-feature {
  display: flex; align-items: center;
  gap: 1.5rem;
  padding: 0.6rem 0;
  font-family: var(--font-serif);
}
.vf-num {
  font-family: var(--font-italian);
  font-size: 1.2rem;
  color: var(--venice-gold);
  letter-spacing: 0.1em;
}
.vf-text {
  font-size: 1.05rem;
  color: var(--venice-cream);
  font-weight: 300;
}

.venice-pricing {
  margin-bottom: 2rem;
}
.venice-price-row {
  display: flex; align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--venice-cream);
}
.dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201,168,90,0.4);
  position: relative;
  top: -4px;
}
.venice-price {
  font-family: var(--font-italian);
  font-size: 1.8rem;
  color: var(--venice-gold);
  font-weight: 400;
}

.btn-venice {
  background: transparent;
  color: var(--venice-gold);
  border: 1px solid var(--venice-gold);
  font-family: var(--font-italian);
  letter-spacing: 0.3em;
  padding: 1.1rem 2.5rem;
  position: relative;
}
.btn-venice::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--venice-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: -1;
}
.btn-venice:hover { color: var(--black); }
.btn-venice:hover::before { transform: scaleX(1); }

@media (max-width: 900px) {
  .venice-section { padding: 5rem 1.5rem; }
  .venice-grid { grid-template-columns: 1fr; gap: 3rem; }
  .venice-ornament-top { top: 1.5rem; }
  .venice-ornament-bottom { bottom: 1.5rem; }
}

/* ============================================
   JUANES SECTION
   ============================================ */
.juanes-section {
  padding: 10rem 3rem;
  background: linear-gradient(180deg, #0a0a0a, #1a0a0a 50%, #0a0a0a);
  position: relative;
  overflow: hidden;
}
.juanes-section::before {
  content: '';
  position: absolute;
  top: 20%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(217,50,8,0.15), transparent 70%);
  filter: blur(60px);
}
.juanes-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

.juanes-award {
  position: absolute;
  bottom: -2rem; left: -2rem;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.8rem;
  background: var(--black-soft);
  border: 1px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  z-index: 3;
}
.award-icon { font-size: 1.8rem; }
.juanes-award strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
}
.juanes-award span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--cream-soft);
}

.juanes-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.juanes-script {
  font-family: var(--font-script);
  color: var(--gold-bright);
  font-size: 1.3em;
  font-style: italic;
  font-weight: 500;
}
.juanes-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream-soft);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  opacity: 0.8;
}
.juanes-body {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--cream-soft);
  margin-bottom: 2.5rem;
}
.juanes-body em { color: var(--gold-bright); font-style: italic; }

.juanes-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  margin-bottom: 2rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream-soft);
}
.juanes-meta strong { color: var(--cream); font-weight: 500; }
.juanes-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-bright);
}

.btn-juanes {
  background: var(--cream);
  color: var(--black);
  padding: 1.1rem 2.2rem;
}
.btn-juanes:hover {
  background: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(244,211,94,0.4);
}

@media (max-width: 900px) {
  .juanes-section { padding: 6rem 1.5rem; }
  .juanes-grid { grid-template-columns: 1fr; gap: 4rem; }
  .juanes-award { left: 1rem; bottom: -1.5rem; padding: 1rem 1.4rem; }
}

/* ============================================
   ZANCOS SECTION
   ============================================ */
.zancos-section {
  padding: 10rem 3rem;
  background: linear-gradient(180deg, #0a0a0a, #0f0f15 50%, #0a0a0a);
  position: relative;
  overflow: hidden;
}
.zancos-section::before {
  content: '';
  position: absolute;
  top: 30%; left: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(150,100,200,0.1), transparent 70%);
  filter: blur(80px);
}
.zancos-content {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.zancos-header {
  text-align: center;
  margin-bottom: 4rem;
}
.zancos-eyebrow { color: #b8a8ff; }
.zancos-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 60px rgba(180,160,255,0.3);
}
.zancos-sub {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream-soft);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.zancos-sub em { color: #b8a8ff; font-style: italic; }

.zancos-gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  grid-template-rows: 450px;
  gap: 1rem;
  margin-bottom: 3rem;
}
.zanco-img {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  transition: all 0.5s;
  filter: brightness(0.85);
}
.zanco-img:hover { filter: brightness(1); transform: translateY(-5px); }
.zanco-img-tall { grid-row: 1; }

.zancos-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 2.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,168,255,0.2);
  border-radius: 4px;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.zancos-info {
  display: flex; align-items: baseline; gap: 2.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream-soft);
  flex-wrap: wrap;
}
.zancos-info strong { color: var(--cream); }
.zancos-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #b8a8ff;
}

.btn-zancos {
  background: transparent;
  color: #b8a8ff;
  border: 1px solid #b8a8ff;
}
.btn-zancos:hover {
  background: #b8a8ff;
  color: var(--black);
}

@media (max-width: 900px) {
  .zancos-section { padding: 6rem 1.5rem; }
  .zancos-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px;
  }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 10rem 3rem;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.final-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(244,211,94,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 20%, rgba(255,107,26,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201,168,90,0.1) 0%, transparent 50%);
}
.final-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--gold) 1px, transparent 2px),
    radial-gradient(circle at 70% 70%, var(--gold-bright) 1px, transparent 2px),
    radial-gradient(circle at 40% 80%, var(--gold-soft) 1px, transparent 2px);
  background-size: 150px 150px, 200px 200px, 180px 180px;
  opacity: 0.3;
}

.final-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.final-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  margin-bottom: 2rem;
}
.final-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 2rem;
}
.final-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-bright);
}
.final-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream-soft);
  margin-bottom: 3rem;
  line-height: 1.7;
}
.final-text strong { color: var(--gold-bright); }

.final-actions {
  display: flex; gap: 1.5rem; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.btn-final {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 1.3rem 2.5rem;
  font-size: 1rem;
  box-shadow: 0 10px 40px rgba(37,211,102,0.4);
}
.btn-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 60px rgba(37,211,102,0.6);
}
.btn-final-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,241,232,0.3);
  font-family: var(--font-sans);
  text-transform: none;
  letter-spacing: 0.05em;
}
.btn-final-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.final-perks {
  display: flex; justify-content: center; gap: 4rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.perk { text-align: center; }
.perk-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-bright);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.perk-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream-soft);
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .final-cta { padding: 6rem 1.5rem; }
  .final-perks { gap: 2rem; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050505;
  padding: 5rem 3rem 2rem;
  border-top: 1px solid rgba(212,175,55,0.15);
}
.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo {
  height: 80px;
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream-soft);
}
.footer-brand .accent {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--gold-bright);
  letter-spacing: 0.1em;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cream-soft);
  margin-bottom: 0.7rem;
  transition: color 0.3s;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-mini { opacity: 0.7; font-size: 0.85rem; }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,241,232,0.08);
  display: flex; justify-content: space-between;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(245,241,232,0.4);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.wa-float:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}
.wa-float svg {
  width: 32px; height: 32px;
  position: relative; z-index: 2;
}
.wa-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   REVEAL ON SCROLL (sutil, sin ocultar)
   ============================================ */
.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal:not(.visible) {
    opacity: 0.01;
    transform: translateY(30px);
  }
  .reveal {
    transition: opacity 0.9s cubic-bezier(0.2,0.8,0.2,1), transform 0.9s cubic-bezier(0.2,0.8,0.2,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   FIRE VIDEO HERO
   ============================================ */
.fire-video-wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 4rem;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,107,26,0.3);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(255,107,26,0.2);
}
.fire-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.fire-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}
.fire-video-caption {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  z-index: 2;
  color: var(--cream);
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.fire-video-caption .caption-tag {
  color: var(--gold-bright);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 0.5rem;
}
.fire-video-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.fire-video-caption p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ============================================
   VENICE VIDEO + GALLERY MEJORADA
   ============================================ */
.venice-video-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 2rem auto 4rem;
  aspect-ratio: 9/16;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(201,168,90,0.15);
  padding: 16px;
  background: linear-gradient(135deg, var(--venice-gold), #8b6f30);
}
.venice-video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  z-index: 1;
}
.venice-video-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 2;
  pointer-events: none;
}
.venice-video-caption {
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  text-align: center;
  z-index: 3;
  pointer-events: none;
}
.caption-italian {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--venice-cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
  letter-spacing: 0.1em;
}

/* Galería de máscaras */
.venice-gallery {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.2rem;
  margin: 4rem auto;
  max-width: 1000px;
  width: 100%;
  height: 520px;
  align-items: stretch;
}
.venice-mask-card {
  position: relative;
  height: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--venice-gold), #8b6f30);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.venice-mask-card-tall {
  margin-top: -20px;
  margin-bottom: -20px;
}
.venice-mask-card:hover {
  transform: translateY(-8px);
}
.venice-mask-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: sepia(0.1) contrast(1.05) saturate(1.1);
}
.venice-mask-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  pointer-events: none;
}
.venice-mask-corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--venice-cream);
  z-index: 2;
}
.venice-mask-corner.top-left { top: 6px; left: 6px; border-right: 0; border-bottom: 0; }
.venice-mask-corner.top-right { top: 6px; right: 6px; border-left: 0; border-bottom: 0; }
.venice-mask-corner.bottom-left { bottom: 6px; left: 6px; border-right: 0; border-top: 0; }
.venice-mask-corner.bottom-right { bottom: 6px; right: 6px; border-left: 0; border-top: 0; }

/* Info grid: descripción + card de precio/certificado */
.venice-info-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  text-align: left;
  align-items: start;
}

.venice-cert-card {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--venice-gold);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.venice-cert-card::before,
.venice-cert-card::after {
  content: '';
  position: absolute;
  width: 30px; height: 30px;
}
.venice-cert-card::before {
  top: -1px; left: -1px;
  border-top: 1px solid var(--venice-cream);
  border-left: 1px solid var(--venice-cream);
}
.venice-cert-card::after {
  bottom: -1px; right: -1px;
  border-bottom: 1px solid var(--venice-cream);
  border-right: 1px solid var(--venice-cream);
}
.venice-cert-seal {
  width: 90px; height: 90px;
  margin: 0 auto 1rem;
  color: var(--venice-gold);
}
.venice-cert-card h4 {
  font-family: var(--font-italian);
  font-size: 1.2rem;
  color: var(--venice-cream);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.venice-cert-card p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--venice-gold);
  line-height: 1.5;
}

.venice-pricing-card {
  background: linear-gradient(135deg, rgba(201,168,90,0.1), rgba(201,168,90,0.02));
  border: 1px solid var(--venice-gold);
  padding: 2rem;
  text-align: center;
}
.venice-pricing-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--venice-gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.venice-pricing-card .venice-price-row {
  margin-bottom: 0.8rem;
}
.venice-pricing-card .btn-venice {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* Columnas venecianas decorativas */
.venice-column {
  position: absolute;
  top: 8%; height: 80%;
  width: 60px;
  color: var(--venice-gold);
  pointer-events: none;
  z-index: 0;
}
.venice-column-left { left: 2%; }
.venice-column-right { right: 2%; }

@media (max-width: 900px) {
  .venice-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .venice-column {
    display: none;
  }
}

/* ============================================
   JUANES MEJORADO (más fotos)
   ============================================ */
.juanes-img-col {
  position: relative;
}
.juanes-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.juanes-img-stack {
  position: absolute;
  bottom: -1rem;
  right: -2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 2;
}
.juanes-img-small {
  width: 140px;
  height: 140px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 3px solid var(--black);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s;
}
.juanes-img-small:hover {
  transform: scale(1.05);
}

.juanes-coverage {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-soft);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .juanes-img-stack {
    right: 0;
    bottom: -3rem;
    flex-direction: row;
  }
  .juanes-img-small {
    width: 90px;
    height: 90px;
  }
}

/* ============================================
   FOOTER DISCLAIMER
   ============================================ */
.footer-disclaimer {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(245,241,232,0.06);
}
.footer-disclaimer p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(245,241,232,0.5);
  letter-spacing: 0.1em;
}

/* ============================================
   VENICE TEXT/PARAGRAPH STYLES
   ============================================ */
.venice-text-col {
  color: var(--venice-cream);
}
.venice-paragraph {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--venice-cream);
  margin-bottom: 1.5rem;
}
.venice-paragraph em {
  font-style: italic;
  color: var(--venice-gold);
}
.venice-paragraph strong {
  font-weight: 500;
  color: var(--cream);
}

/* ============================================
   MÓVIL · MEJORAS RESPONSIVE FINALES
   ============================================ */

/* WhatsApp flotante más pequeño en móvil */
@media (max-width: 768px) {
  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 1.2rem;
    right: 1.2rem;
  }
  .wa-float svg {
    width: 26px;
    height: 26px;
  }
}

/* GALERÍA VENECIANA EN MÓVIL: 1 columna apilada vertical */
@media (max-width: 768px) {
  .venice-gallery {
    grid-template-columns: 1fr;
    height: auto;
    max-width: 100%;
    gap: 1.5rem;
    justify-items: center;
  }
  .venice-mask-card,
  .venice-mask-card-tall {
    height: auto;
    aspect-ratio: 3/4;
    margin: 0 !important;
    width: 100%;
    max-width: 320px;
  }
}

/* VIDEO FUEGO MÁS ALTO EN MÓVIL (aspect ratio 4:5 en lugar de 16:9) */
@media (max-width: 768px) {
  .fire-video-wrap {
    aspect-ratio: 4/5;
    margin-bottom: 2.5rem;
  }
  .fire-video-caption {
    left: 1.2rem;
    bottom: 1.5rem;
  }
  .fire-video-caption h3 {
    font-size: 1.5rem;
  }
}

/* VIDEO VENECIA: optimizar tamaño en móvil */
@media (max-width: 768px) {
  .venice-video-wrap {
    max-width: 320px;
    margin: 1rem auto 3rem;
    padding: 10px;
  }
  .venice-video-frame {
    inset: 7px;
  }
}

/* COLUMNAS VENECIANAS: ocultar en móvil/tablet */
@media (max-width: 1100px) {
  .venice-column { display: none; }
}

/* INFO GRID VENECIA: 1 columna en móvil */
@media (max-width: 768px) {
  .venice-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .venice-cert-card,
  .venice-pricing-card {
    padding: 1.5rem;
  }
  .venice-cert-seal {
    width: 70px;
    height: 70px;
  }
  .venice-cert-card h4 {
    font-size: 1.05rem;
  }
  .venice-features {
    margin: 2rem 0;
    padding: 1.5rem 0;
  }
}

/* TÍTULO VENECIA: más compacto en móvil */
@media (max-width: 768px) {
  .venice-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.1;
  }
  .venice-eyebrow {
    font-size: 0.85rem;
    padding: 0 1rem;
  }
  .venice-italian-quote {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }
  .venice-section {
    padding: 4rem 1.5rem;
  }
  .venice-content {
    padding: 2rem 0;
  }
  .venice-ornament {
    width: 90%;
  }
  .venice-ornament-top { top: 1.5rem; }
  .venice-ornament-bottom { bottom: 1.5rem; }
}

/* JUANES: botones y fotos */
@media (max-width: 768px) {
  .btn-juanes {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    text-align: center;
  }
  .juanes-section {
    padding: 5rem 1.5rem 4rem;
  }
  .juanes-img-stack {
    bottom: -2rem;
    right: 0.5rem;
  }
  .juanes-img-small {
    width: 80px;
    height: 80px;
  }
  .juanes-award {
    bottom: -1rem;
    left: 0.5rem;
    padding: 0.8rem 1.2rem;
  }
  .juanes-award strong {
    font-size: 0.85rem;
  }
  .juanes-award span {
    font-size: 0.75rem;
  }
  .award-icon { font-size: 1.4rem; }
  .juanes-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .juanes-price {
    font-size: 1.5rem;
  }
  .juanes-coverage {
    margin-top: -0.5rem;
  }
}

/* BOTONES en móvil: todos deben caber */
@media (max-width: 768px) {
  .btn-primary,
  .btn-ghost,
  .btn-fire,
  .btn-venice,
  .btn-zancos,
  .btn-final {
    padding: 0.95rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
  }
  .btn-venice {
    width: 100%;
    justify-content: center;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }
  .hero-actions a {
    width: 100%;
    justify-content: center;
  }
  .final-actions {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }
  .final-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .zancos-footer {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    text-align: center;
  }
  .zancos-info {
    justify-content: center;
  }
  .btn-zancos {
    width: 100%;
    justify-content: center;
  }
  .fire-details {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: stretch;
    text-align: center;
  }
  .fire-detail {
    align-items: center;
  }
  .btn-fire {
    width: 100%;
    justify-content: center;
  }
}

/* NAV en móvil: nav-cta más compacto */
@media (max-width: 768px) {
  .nav {
    padding: 0.8rem 1rem;
  }
  .nav.scrolled {
    padding: 0.6rem 1rem;
  }
  .nav-logo img {
    height: 42px;
  }
  .nav.scrolled .nav-logo img {
    height: 36px;
  }
  .nav-cta {
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }
  .nav-cta-dot {
    width: 6px;
    height: 6px;
  }
}

/* STATS hero: stack vertical en móvil pequeño */
@media (max-width: 480px) {
  .hero-stats {
    gap: 1.5rem;
  }
  .stat-divider {
    display: none;
  }
}

/* INTRO en móvil */
@media (max-width: 768px) {
  .intro {
    padding: 4rem 1.5rem;
  }
  .intro-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* FIRE TITLE en móvil */
@media (max-width: 768px) {
  .fire-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .fire-sub {
    font-size: 1rem;
  }
  .fire-section {
    padding: 4rem 1.2rem;
  }
}

/* HERO ajustes pequeños */
@media (max-width: 480px) {
  .hero {
    padding: 6rem 1rem 3rem;
  }
  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }
  .hero-tagline {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
}

/* FINAL CTA en móvil */
@media (max-width: 768px) {
  .final-cta {
    padding: 5rem 1.5rem;
  }
  .final-title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }
  .final-perks {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

/* FOOTER en móvil */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-brand {
    grid-column: auto;
    text-align: center;
  }
  .footer-logo {
    height: 70px;
    margin: 0 auto 1rem;
  }
  .footer-col h5 {
    margin-bottom: 1rem;
  }
}

/* OVERRIDE FINAL responsive de galería veneciana */
@media (max-width: 768px) {
  .venice-gallery .venice-mask-card,
  .venice-gallery .venice-mask-card.venice-mask-card-tall {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    aspect-ratio: 3/4;
    height: auto;
    max-width: 280px;
  }
  .venice-mask-card-tall {
    aspect-ratio: 3/4 !important;
  }
}
