/* ═══════════════════════════════════════════════════════════
   DRAGON — CSS específico: Semana del Dragón
   ═══════════════════════════════════════════════════════════ */

/* ─── HERO ─── */
#hero {
  min-height: 100dvh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; position: relative;
  padding: 148px 24px 80px;
  background:
    linear-gradient(to bottom, rgba(9,9,9,0.45) 0%, rgba(9,9,9,0.65) 55%, rgba(9,9,9,0.97) 100%),
    url('../../../media/subachoque.jpeg') center/cover no-repeat;
  overflow: hidden;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold); color: var(--gold-light);
  font-family: 'Cinzel', serif; font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 6px 20px; border-radius: 2px; margin-bottom: 32px;
  animation: fadeDown 0.8s ease both;
}
.hero-title {
  font-family: 'Dragonlord', serif; font-weight: normal;
  font-size: clamp(4rem, 12vw, 10rem); letter-spacing: 0.03em; margin-bottom: 8px; width: 65vw;
  background: linear-gradient(160deg, var(--gold-bright) 0%, var(--gold) 40%, var(--flame) 80%, var(--red-mid) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: fadeDown 0.8s 0.15s ease both;
}
.hero-subtitle {
  font-family: 'Cinzel', serif; font-size: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 36px;
  animation: fadeDown 0.8s 0.25s ease both;
}
.hero-quote {
  max-width: 760px; font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: #d4c0b0; line-height: 1.8; font-style: italic;
  margin-bottom: 48px; animation: fadeDown 0.8s 0.35s ease both;
}
.hero-quote strong { color: var(--gold-light); font-style: normal; font-weight: 600; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; animation: fadeDown 0.8s 0.45s ease both; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--subtle); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; font-family: 'Cinzel', serif;
  animation: fadeDown 1s 0.7s ease both;
}
.hero-scroll svg { animation: bounce 2s infinite; }

/* ─── HEARTBEAT en btn-primary ─── */
.btn-primary { animation: heartbeat 882ms ease-in-out infinite; }
.btn-primary:hover { animation: none; }

/* ─── QUÉ ES ─── */
#que-es { background: var(--deep); position: relative; overflow: hidden; }
.que-es-grid { display: grid; grid-template-columns: 3fr 7fr; gap: 64px; align-items: center; margin-top: 32px; }
.que-es-image { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 9/16; max-height: 600px; }

/* ─── PHOTO STRIP ─── */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); height: 260px; overflow: hidden; }
.photo-strip-item { overflow: hidden; position: relative; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.7) saturate(0.8); transition: transform 0.6s ease, filter 0.6s ease; }
.photo-strip-item:hover img { transform: scale(1.06); filter: brightness(0.9) saturate(1.1); }
.photo-strip-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(9,9,9,0.6) 100%); pointer-events: none; }

/* ─── CAROUSEL ─── */
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.carousel-slide { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: center; min-width: 100%; }
.qs-photo { position: relative; border-radius: 10px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.qs-photo img { width: 100%; display: block; object-fit: cover; filter: brightness(0.95) saturate(0.95); transition: transform 0.6s ease; }
.qs-photo:hover img { transform: scale(1.03); }
.qs-photo::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(182,160,111,0.3); border-radius: 10px; pointer-events: none; }
.qs-bio { font-size: 0.95rem; line-height: 1.8; color: #c8b8ac; margin-top: 8px; }
.qs-bio-italic { font-style: italic; color: var(--gold-light); margin-bottom: 14px; }
.qs-bio-mt { margin-top: 12px; }
.qs-quote-display {
  font-family: 'Cinzel', serif; font-weight: 600;
  font-size: clamp(0.88rem, 1.3vw, 1.1rem); line-height: 1.6;
  color: var(--text); text-align: center;
  margin: 20px 0;
}
.qs-name { font-size: 1.6rem; margin-bottom: 12px; color: var(--text); }
.staff-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.staff-list li { font-size: 0.92rem; color: #c8b8ac; line-height: 1.5; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: var(--card); color: var(--gold-light); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.carousel-btn:hover { border-color: var(--gold); background: rgba(182,160,111,0.1); }
.carousel-dots { display: flex; gap: 10px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border); cursor: pointer; transition: background 0.2s, transform 0.2s; padding: 0; }
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }

/* ─── PARA QUIÉN ─── */
#para-quien { background: var(--deep); }
.audience-card-men::after { content: '♂'; position: absolute; right: 24px; top: 20px; font-size: 3.5rem; color: var(--gold); opacity: 0.15; }
.audience-card-women::after { content: '♀'; position: absolute; right: 24px; top: 20px; font-size: 3.5rem; color: var(--gold); opacity: 0.15; }
.schedule-note { margin-top: 32px; padding: 16px 24px; background: rgba(182,160,111,0.08); border: 1px solid rgba(182,160,111,0.25); border-radius: 6px; font-size: 0.88rem; color: var(--gold-light); font-family: 'Cinzel', serif; letter-spacing: 0.05em; text-align: center; }

/* ─── TESTIMONIOS ─── */
#testimonios { text-align: center; }
.testimonios-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }

/* ─── PARA QUIÉN ─── */
.audience-outcome { margin-top: 16px; font-size: 0.88rem; color: var(--gold-light); line-height: 1.6; font-style: italic; border-top: 1px solid var(--border); padding-top: 14px; }

/* ─── QUÉ ES — quote block ─── */
.quote-block p { font-size: clamp(0.95rem, 1.8vw, 1.1rem); line-height: 1.75; }
.quote-block p + p { margin-top: 16px; }

/* ─── INCLUYE ─── */
#incluye { background: var(--deep); position: relative; }
.tribe-highlight { background: linear-gradient(135deg, rgba(155,28,28,0.15), rgba(182,160,111,0.1)); border-color: var(--gold); }
.tribe-highlight .include-title { color: var(--gold-bright); }
.tribe-highlight .include-desc { color: #c8b8ac; }

/* ─── GARANTÍA ─── */
#garantia { background: var(--black); text-align: center; }

/* ─── PRECIO ─── */
#precio { background: var(--deep); text-align: center; }
.price-card {
  max-width: 560px; margin: 56px auto 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 56px 48px;
  position: relative; overflow: hidden;
}
.price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--orange), var(--gold)); }
.price-label { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.price-amount { font-family: 'Cinzel Decorative', serif; font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900; background: linear-gradient(135deg, var(--gold-bright), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 12px; }
.price-currency { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--muted); margin-bottom: 36px; }
.price-includes-list { list-style: none; text-align: left; margin-bottom: 40px; display: flex; flex-direction: column; gap: 12px; }
.price-includes-list li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: #c8b8ac; }
.check { width: 20px; height: 20px; background: linear-gradient(135deg, var(--red), var(--gold)); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.65rem; color: white; font-weight: 700; }

/* ─── FECHAS ─── */
#fechas { background: var(--black); }
.dates-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
.date-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 36px 32px; position: relative; overflow: hidden; transition: border-color 0.3s ease; }
.date-card:hover { border-color: var(--gold); }
.date-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--gold)); }
.date-card-type { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.date-card-title { font-size: 1.35rem; margin-bottom: 28px; color: var(--text); }
.date-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
.date-row:last-of-type { border-bottom: none; }
.date-label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-family: 'Cinzel', serif; }
.date-value { font-size: 0.95rem; color: var(--gold-light); font-family: 'Cinzel', serif; font-weight: 600; }
.date-duration { margin-top: 24px; text-align: center; font-size: 0.85rem; color: var(--muted); font-family: 'Cinzel', serif; letter-spacing: 0.1em; }
.date-duration strong { color: var(--flame); }
.spots-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; background: rgba(200,60,0,0.15); border: 1px solid rgba(200,60,0,0.4); color: #f09080; font-size: 0.8rem; font-family: 'Cinzel', serif; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 4px; width: 100%; justify-content: center; }

/* ─── CTA FINAL ─── */
#cta-final { padding: 80px 24px; }
.cta-final-sub { max-width: 700px; margin: 0 auto 20px; font-size: clamp(1rem, 1.8vw, 1.2rem); color: #c8b8ac; line-height: 1.75; }
.cta-final-note { max-width: 640px; margin: 0 auto 48px; font-size: 0.9rem; color: var(--muted); line-height: 1.7; font-style: italic; }
.cta-final-note strong { color: var(--gold-light); font-style: normal; }
.cta-final-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 50%, var(--gold) 100%);
  color: #fff; font-family: 'Cinzel', serif; font-weight: 700; font-size: 1rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 22px 56px; border: none; border-radius: 4px;
  cursor: pointer; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 8px 50px rgba(200,80,0,0.5); position: relative; z-index: 1;
}
.cta-final-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 60px rgba(200,80,0,0.7); filter: brightness(1.1); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .que-es-grid { grid-template-columns: 1fr; gap: 32px; }
  .que-es-image { max-width: 360px; margin: 0 auto; }
  .carousel-slide { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 900px) {
  .testimonios-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .dates-grid { grid-template-columns: 1fr; }
  .price-card { padding: 40px 28px; }
  .photo-strip { height: 160px; }
  .testimonios-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .includes-grid { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: 0.01em; width: 90vw; line-height: 1; }
}

/* ─── GOOGLE REVIEWS ─── */
#google-reviews { background: var(--black); }
.reviews-rating-banner { display: flex; align-items: center; justify-content: center; gap: 20px; margin: 32px 0 40px; padding: 20px 32px; background: rgba(182,160,111,0.06); border: 1px solid rgba(182,160,111,0.2); border-radius: 12px; }
.reviews-rating-number { font-family: 'Cinzel Decorative', serif; font-size: 3.2rem; font-weight: 900; background: linear-gradient(135deg, var(--gold-bright), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.reviews-rating-detail { display: flex; flex-direction: column; gap: 6px; }
.reviews-rating-stars { display: flex; gap: 4px; }
.reviews-rating-label { font-size: 0.78rem; color: var(--muted); font-family: 'Cinzel', serif; letter-spacing: 0.06em; }
.reviews-track-wrap { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 8px; }
.reviews-track-wrap::-webkit-scrollbar { display: none; }
.reviews-track { display: flex; gap: 18px; width: max-content; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; width: 300px; flex-shrink: 0; display: flex; flex-direction: column; gap: 14px; transition: border-color 0.3s; }
.review-card:hover { border-color: var(--gold); }
.review-header { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg, var(--red), var(--gold)); display: flex; align-items: center; justify-content: center; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-initial { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: white; }
.review-meta { flex: 1; min-width: 0; }
.review-name { font-family: 'Cinzel', serif; font-size: 0.78rem; font-weight: 600; color: var(--text); letter-spacing: 0.05em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-time { font-size: 0.72rem; color: var(--subtle); margin-top: 2px; }
.review-google-icon { flex-shrink: 0; opacity: 0.85; }
.review-stars { display: flex; gap: 3px; }
.review-text { font-size: 0.88rem; color: var(--muted); line-height: 1.6; flex: 1; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.reviews-slider-wrapper { position: relative; }
.reviews-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold); background: var(--card); color: var(--gold); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, color 0.2s; }
.reviews-arrow:hover { background: var(--gold); color: var(--black); }
.reviews-arrow-prev { left: -20px; }
.reviews-arrow-next { right: -20px; }
.reviews-arrow.hidden { opacity: 0; pointer-events: none; }
.reviews-cta { text-align: center; margin-top: 36px; }
@media (max-width: 768px) {
  .reviews-rating-banner { gap: 14px; padding: 16px 20px; }
  .reviews-rating-number { font-size: 2.4rem; }
  .review-card { width: 260px; }
}
