/* =========================================
   NOAH'S WONDERLAND — styles.css v2
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d0e2e;
  --navy-mid:   #13144a;
  --navy-light: #1a1b5e;
  --gold:       #ffc61e;
  --gold-dark:  #e0a300;
  --gold-glow:  rgba(255,198,30,0.35);
  --sky:        #3ab0e2;
  --white:      #ffffff;
  --purple:     #7c3aed;
  --pink:       #ec4899;
  --green:      #22c55e;
  --text-soft:  rgba(255,255,255,0.7);
  --radius:     16px;
  --radius-lg:  24px;
  --shadow:     0 8px 40px rgba(0,0,0,0.5);
  --font-head:  'Fredoka One', cursive;
  --font-body:  'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--navy); color: #fff; overflow-x: hidden; }

/* ---- STARS ---- */
.stars-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.star { position: absolute; border-radius: 50%; background: #fff; animation: twinkle var(--dur,3s) ease-in-out infinite; opacity: 0; }
@keyframes twinkle {
  0%,100% { opacity:0; transform:scale(0.7); }
  50%      { opacity:var(--op,.7); transform:scale(1.3); }
}

/* ---- UTILS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { color: var(--gold); font-weight: 800; font-size: 0.78rem; letter-spacing: 3px; text-align: center; margin-bottom: 10px; text-transform: uppercase; }
.section-title  { font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.8rem); text-align: center; color: #fff; }
.exp-divider    { width: 56px; height: 4px; background: linear-gradient(90deg,var(--gold),var(--sky)); border-radius: 4px; margin: 14px auto 36px; }
.gold { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  color: var(--navy); font-family: var(--font-body); font-weight: 800;
  font-size: 0.97rem; padding: 13px 26px; border-radius: 50px; border: none;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: transform .2s, box-shadow .2s;
  animation: btnGoldPulse 2.4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto; white-space: nowrap; width: fit-content;
}
/* shimmer sweep */
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  animation: btnShimmer 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShimmer {
  0%   { left: -100%; }
  50%  { left: 140%; }
  100% { left: 140%; }
}
@keyframes btnGoldPulse {
  0%,100% { box-shadow: 0 4px 20px var(--gold-glow); }
  50%      { box-shadow: 0 6px 36px rgba(255,198,30,.75), 0 0 0 6px rgba(255,198,30,.12); }
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 36px rgba(255,198,30,.7);
  animation: none;
}
.btn-gold.full-width { width:100%; justify-content:center; font-size:1.05rem; padding:15px; margin-top:4px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; font-family: var(--font-body);
  font-weight: 700; font-size: 0.97rem; padding: 13px 26px;
  border-radius: 50px; border: 2px solid rgba(255,255,255,.4);
  cursor: pointer; text-decoration: none; transition: background .2s, border-color .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-asistente {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(58,176,226,.15); color: var(--sky);
  border: 2px solid var(--sky); border-radius: 50px;
  padding: 12px 20px; font-family: var(--font-body); font-weight: 800;
  font-size: 0.9rem; cursor: pointer; width: 100%;
  transition: background .2s;
}
.btn-asistente:hover { background: rgba(58,176,226,.28); }

.btn-locations {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; border: 2px solid var(--gold); color: var(--gold);
  border-radius: 50px; padding: 12px 24px;
  font-family: var(--font-body); font-weight: 800; font-size: 0.9rem;
  cursor: pointer; transition: background .2s;
}
.btn-locations:hover { background: rgba(255,198,30,.12); }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(13,14,46,.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.nav-container {
  display: flex; align-items: center; gap: 10px;
  max-width: 1300px; margin: 0 auto; padding: 10px 24px;
}

/* LOGO MÁS GRANDE */
.nav-logo img {
  height: 72px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.45));
  transition: transform .2s;
}
.nav-logo img:hover { transform: scale(1.06); }

.nav-links { display: flex; align-items: center; gap: 0; margin-left: auto; flex-shrink: 1; min-width: 0; }
.nav-link {
  color: rgba(255,255,255,.82); text-decoration: none; font-weight: 700;
  font-size: 0.8rem; padding: 8px 9px; border-radius: 50px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-cta { flex-shrink: 0; white-space: nowrap; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-link.active { color: var(--navy); background: var(--gold); }
.nav-link i { display: none; }
.nav-cta {
  margin-left: 8px; font-size: 0.82rem; padding: 10px 16px;
  animation: btnGoldPulse 2.8s ease-in-out infinite;
}
.nav-drawer-logo, .nav-drawer-bottom { display: none; }

.lang-toggle {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-family: var(--font-body); font-weight: 800; font-size: 0.8rem;
  padding: 8px 13px; border-radius: 50px; cursor: pointer; margin-left: 10px;
  transition: background .2s, border-color .2s;
}
.lang-toggle:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative; min-height: 100vh;
  background:
    linear-gradient(100deg, rgba(8,9,28,.96) 0%, rgba(9,10,32,.9) 32%, rgba(10,11,34,.55) 52%, rgba(10,11,34,.2) 68%, transparent 82%),
    url('../img/hero-bg.jpg');
  background-size: cover, cover;
  background-position: center, center 40%;
  display: flex; align-items: center;
  padding: 130px 24px 130px; overflow: hidden; z-index: 1;
}
.hero-content {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; position: relative; z-index: 2;
}
.hero-text { max-width: 560px; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.1; color: #fff; margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.hero-sub { color: var(--text-soft); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-social-proof { display: flex; align-items: center; gap: 12px; color: var(--text-soft); font-size: 0.88rem; }
.avatar-group { display: flex; }
.avatar-group img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--gold); margin-left: -8px; object-fit: cover; }
.avatar-group img:first-child { margin-left: 0; }

/* CHAT WIDGET HERO */
.chat-widget {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 330px;
  background: rgba(15,16,55,.93);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,198,30,.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
  animation: floatWidget 5s ease-in-out infinite;
}
@keyframes floatWidget {
  0%,100% { transform: translateY(-50%) translateY(0); }
  50%      { transform: translateY(-50%) translateY(-8px); }
}
.chat-header {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: rgba(255,198,30,.1);
  border-bottom: 1px solid rgba(255,198,30,.2);
}
.chat-bot-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0; position: relative;
}
.chat-bot-avatar.small { width: 36px; height: 36px; font-size: 1rem; }
.bot-online {
  position: absolute; bottom: 2px; right: 2px;
  width: 10px; height: 10px; background: var(--green);
  border-radius: 50%; border: 2px solid var(--navy-mid);
}
.chat-bot-info .chat-bot-name { font-weight: 800; font-size: 0.92rem; color: var(--gold); display: flex; align-items: center; gap: 6px; }
.badge-ia { background: var(--purple); color: #fff; font-size: 0.62rem; font-weight: 900; padding: 2px 6px; border-radius: 6px; letter-spacing: 1px; }
.chat-bot-sub { font-size: 0.78rem; color: var(--text-soft); margin-top: 3px; line-height: 1.4; }

.chat-suggestions { padding: 12px 14px; display: flex; flex-direction: column; gap: 7px; }
.chat-suggestion {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 8px 12px;
  color: rgba(255,255,255,.85); font-size: 0.79rem;
  font-family: var(--font-body); cursor: pointer; text-align: left;
  transition: background .2s, border-color .2s;
}
.chat-suggestion i { color: var(--gold); font-size: 0.74rem; flex-shrink: 0; }
.chat-suggestion:hover { background: rgba(255,198,30,.18); border-color: rgba(255,198,30,.4); }
.chat-suggestion.small { padding: 6px 10px; font-size: 0.76rem; }

.chat-messages {
  padding: 10px 14px; max-height: 140px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 8px;
  scrollbar-width: thin; scrollbar-color: rgba(255,198,30,.3) transparent;
}
.chat-msg {
  padding: 8px 12px; border-radius: 14px;
  font-size: 0.81rem; line-height: 1.45; max-width: 88%;
  animation: msgIn .25s ease;
}
@keyframes msgIn { from { opacity:0; transform: translateY(6px); } to { opacity:1; transform:translateY(0); } }
.chat-msg.user { background: var(--gold); color: var(--navy); font-weight: 700; align-self: flex-end; border-radius: 14px 14px 0 14px; }
.chat-msg.bot  { background: rgba(255,255,255,.1); align-self: flex-start; border-radius: 14px 14px 14px 0; }
.chat-typing   { display: flex; gap: 4px; align-items: center; padding: 10px 14px; }
.chat-typing span { width: 6px; height: 6px; background: rgba(255,255,255,.4); border-radius: 50%; animation: blink 1.2s ease infinite; }
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,80%,100%{opacity:.3;transform:scale(1)} 40%{opacity:1;transform:scale(1.3)} }

.chat-input-row {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-top: 1px solid rgba(255,255,255,.08);
}
.chat-input-row input {
  flex: 1; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14); border-radius: 50px;
  padding: 8px 14px; color: #fff; font-family: var(--font-body); font-size: 0.82rem; outline: none;
  transition: border-color .2s;
}
.chat-input-row input::placeholder { color: rgba(255,255,255,.35); }
.chat-input-row input:focus { border-color: var(--gold); }
.chat-send {
  width: 36px; height: 36px; background: var(--gold); border: none;
  border-radius: 50%; color: var(--navy); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 0.88rem;
  transition: transform .2s;
}
.chat-send:hover { transform: scale(1.12); }
.chat-footer { text-align: center; padding: 5px; font-size: 0.67rem; color: rgba(255,255,255,.28); border-top: 1px solid rgba(255,255,255,.05); }

.hero-play-btn {
  position: absolute; right: 28%; top: 50%; transform: translateY(-50%);
  width: 82px; height: 82px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(6px); color: #fff; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 4; transition: transform .2s, background .2s, border-color .2s;
}
.hero-play-btn:hover { transform: translateY(-50%) scale(1.08); background: rgba(255,198,30,.3); border-color: var(--gold); }

.modal-video { max-width: 900px; background: #000; padding: 0; border: none; }
.modal-video video { width: 100%; display: block; border-radius: var(--radius-lg); max-height: 80vh; }
.modal-video .modal-close { background: rgba(0,0,0,.6); }

@media (max-width: 768px) {
  .hero-play-btn { width: 64px; height: 64px; font-size: 1.2rem; right: 50%; top: 30%; transform: translate(50%,-50%); }
  .hero-play-btn:hover { transform: translate(50%,-50%) scale(1.08); }
}

/* HERO CLOUD — banda de nubes onduladas con brillo dorado */
.hero-cloud {
  position: absolute; bottom: -2px; left: 0; right: 0; height: 130px;
  z-index: 3; pointer-events: none;
}
.hero-cloud::before {
  content: '';
  position: absolute; top: 0; left: -60px; right: -60px; height: 78%;
  background-image: radial-gradient(circle at 50% 100%, #ffe6b3 0%, #fff 52%, transparent 58%);
  background-size: 150px 150px;
  background-position: -20px 14px;
  background-repeat: repeat-x;
}
.hero-cloud::after {
  content: '';
  position: absolute; top: 6%; left: -40px; right: -40px; height: 58%;
  background-image: radial-gradient(circle at 50% 100%, #ffedc9 0%, #fff 50%, transparent 56%);
  background-size: 92px 92px;
  background-position: 46px -4px;
  background-repeat: repeat-x;
}
.hero-cloud-fill {
  position: absolute; bottom: 0; left: 0; right: 0; height: 56px;
  background: #fff; z-index: 3;
}

/* =========================================
   VALUE PROPS — GLASSMORPHISM CARDS
   ========================================= */
.value-props {
  position: relative; z-index: 2;
  background: #ffffff;
  padding: 70px 24px;
  overflow: hidden;
}
.value-props::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124,58,237,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(58,176,226,.07) 0%, transparent 55%);
  pointer-events: none;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.prop-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  cursor: default;
  overflow: visible;
}
.prop-card:hover {
  transform: translateY(-4px);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

/* Glow blob behind each card */
.prop-card-glow { display: none; }

/* Icon wrapper */
.prop-icon-wrap {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--c1,#7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: #fff; margin: 0 auto 18px;
  box-shadow: 0 10px 22px rgba(13,14,46,.14);
  transition: transform .3s;
}
.prop-card:hover .prop-icon-wrap {
  transform: scale(1.08);
}

.prop-card h3 {
  font-weight: 800; font-size: 1.02rem; color: var(--navy);
  margin-bottom: 6px; line-height: 1.3;
}
.prop-card p {
  font-size: 0.86rem; color: rgba(13,14,46,.55);
  line-height: 1.5;
}

/* Bottom accent line */
.prop-card-line { display: none; }

/* =========================================
   COTIZA TEASER
   ========================================= */
.cotiza-teaser-section { background: linear-gradient(180deg, var(--navy) 0%, #10113a 100%); padding: 80px 24px; position: relative; z-index: 2; }
.cotiza-teaser { max-width: 620px; text-align: center; }
.cotiza-teaser-icon {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,198,30,.15); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 16px;
}
.cotiza-teaser-sub { color: var(--text-soft); font-size: 0.95rem; margin: 0 auto 28px; max-width: 480px; }
.cotiza-teaser #cotizaTeaserBtn { white-space: nowrap; width: fit-content; max-width: none; display: inline-flex; overflow: visible; }
.cotiza-teaser #cotizaTeaserBtn::after { display: none; }

/* =========================================
   AGENDA — REDISEÑO COMPLETO
   ========================================= */
.agenda-section {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, var(--navy) 0%, #10113a 100%);
  padding: 80px 24px;
}
.agenda-wrapper {
  display: grid; grid-template-columns: 300px 1fr 260px; gap: 24px;
  background: transparent;
  border: none;
  border-radius: 0; padding: 0;
}
.agenda-wrapper > * { min-width: 0; }
.agenda-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.agenda-header > i { font-size: 1.3rem; color: var(--gold); margin-top: 4px; }
.agenda-label { font-weight: 900; font-size: 0.92rem; letter-spacing: 2px; color: var(--gold); }
.agenda-sub   { color: var(--text-soft); font-size: 0.82rem; margin-top: 4px; }

/* STEP PILLS */
.step-pill {
  font-size: 0.78rem; font-weight: 800; letter-spacing: .5px;
  padding: 7px 16px; border-radius: 20px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.5);
}
.step-pill.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.step-pill.done { background: rgba(255,198,30,.18); color: var(--gold); border-color: rgba(255,198,30,.4); }

.agenda-body { display: flex; flex-direction: column; gap: 0; max-width: 380px; margin: 0 auto; }

/* AGENDA MIDDLE — HORARIOS */
.agenda-middle { display: flex; align-items: center; justify-content: center; padding-top: 4px; min-width: 0; }
.agenda-middle .calendar-wide { width: 100%; max-width: 480px; }
.agenda-sub-title { color: var(--gold); font-weight: 800; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.agenda-horarios-desc { color: var(--text-soft); font-size: 0.82rem; margin-bottom: 14px; }
.time-slots-list { display: flex; flex-direction: column; gap: 10px; max-height: 320px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(255,198,30,.3) transparent; }
.slot-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,0,0,.35); border-radius: var(--radius); padding: 12px 14px;
  border-left: 3px solid var(--gold); cursor: pointer;
  transition: background .2s, transform .15s;
  min-width: 0;
}
.slot-card:hover { background: rgba(255,198,30,.12); transform: translateX(3px); }
.slot-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,198,30,.18); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.slot-info h4 { font-weight: 800; font-size: 0.9rem; margin-bottom: 2px; }
.slot-info span { font-size: 0.76rem; color: var(--green); font-weight: 700; }

/* CALENDAR REDISEÑADO */
.calendar {
  background: rgba(10,11,40,.7);
  border: 1px solid rgba(255,198,30,.2);
  border-radius: var(--radius); padding: 20px;
}
.calendar-wide { padding: 24px; }
.calendar-wide .cal-day { font-size: 0.92rem; }
.calendar-wide .cal-days-header span { font-size: 0.76rem; }
.cal-nav {
  display: grid; grid-template-columns: 30px 1fr 30px; align-items: center;
  margin-bottom: 16px; color: #fff; font-weight: 800; font-size: 0.92rem; text-align: center;
}
.cal-btn {
  background: rgba(255,198,30,.15); border: 1px solid rgba(255,198,30,.3);
  color: var(--gold); width: 30px; height: 30px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: background .2s;
}
.cal-btn:hover { background: var(--gold); color: var(--navy); }

.cal-days-header {
  display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; margin-bottom: 8px;
}
.cal-days-header span { text-align: center; font-size: 0.68rem; font-weight: 800; color: var(--gold); letter-spacing: .5px; padding: 4px 0; }

.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 0.8rem; font-weight: 600;
  cursor: pointer; color: rgba(255,255,255,.7);
  transition: background .18s, color .18s, transform .15s;
  border: 1px solid transparent; position: relative;
  user-select: none;
}
.cal-day:hover:not(.other-month) { background: rgba(255,198,30,.2); color: #fff; transform: scale(1.08); }
.cal-day.other-month { color: rgba(255,255,255,.18); cursor: default; pointer-events: none; }
.cal-day.today { border-color: var(--sky); color: var(--sky); font-weight: 900; }
.cal-day.selected { background: var(--gold) !important; color: var(--navy) !important; font-weight: 900; transform: scale(1.1); box-shadow: 0 0 12px var(--gold-glow); }
.cal-day.has-event::after {
  content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
}
.cal-day.selected.has-event::after { background: var(--navy); }
.cal-day.in-range { background: rgba(255,198,30,.12); }

/* EVENTS PANEL */
.events-panel { display: flex; flex-direction: column; gap: 10px; max-height: 320px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(255,198,30,.3) transparent; }
.events-list { display: flex; flex-direction: column; gap: 10px; }

.event-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,0,0,.35); border-radius: var(--radius); padding: 12px 14px;
  border-left: 3px solid var(--gold); cursor: pointer;
  transition: background .2s, transform .15s;
}
.event-item:hover { background: rgba(255,198,30,.12); transform: translateX(3px); }
.event-thumb {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.event-info h4 { font-weight: 800; font-size: 0.87rem; margin-bottom: 2px; }
.event-info .event-time { font-size: 0.75rem; color: var(--text-soft); margin-bottom: 4px; }
.event-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 20px;
}
.event-badge.warn { background: rgba(255,198,30,.2); color: var(--gold); }
.event-badge.ok   { background: rgba(34,197,94,.2);  color: var(--green); }
.no-events { color: var(--text-soft); font-size: 0.83rem; text-align: center; padding: 20px; }

/* AGENDA RIGHT */
.agenda-right {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  background: rgba(10,11,40,.55);
  border: 1px solid rgba(255,198,30,.25);
  border-radius: var(--radius-lg); padding: 22px;
}
.agenda-right-img { width: 100%; }
.agenda-right-img img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; max-height: 200px; box-shadow: 0 8px 24px rgba(0,0,0,.5); }
.agenda-cta-box { text-align: center; width: 100%; display: flex; flex-direction: column; gap: 10px; }
.agenda-cta-box h3 { font-family: var(--font-head); font-size: 1.2rem; line-height: 1.3; margin-bottom: 6px; }
.agenda-cta-box .btn-gold { width: 100%; justify-content: center; }

/* =========================================
   EXPERIENCIAS
   ========================================= */
.experiencias-section {
  position: relative; z-index: 2;
  background: var(--navy);
  padding: 80px 0;
}
.experiencias-section .container { overflow: visible; }

.experiencias-section .section-title { color: #fff; }
#lineas.experiencias-section { background: #fff; }
#lineas.experiencias-section .section-title { color: var(--navy); }
.exp-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.exp-tab {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px; padding: 9px 20px; color: rgba(255,255,255,.7);
  font-family: var(--font-body); font-weight: 700; font-size: 0.87rem;
  cursor: pointer; transition: all .2s;
}
.exp-tab.active, .exp-tab:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.exp-carousel-wrapper { display: flex; align-items: center; gap: 12px; padding: 0 24px; }
.exp-carousel-viewport { flex: 1; overflow: hidden; }
.exp-carousel { display: flex; gap: 14px; transition: transform .4s cubic-bezier(.25,.8,.25,1); will-change: transform; }

.exp-modalidades-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; max-width: 1200px; margin: 0 auto; }
.exp-modalidad-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.08); display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease; }
.exp-modalidad-card:hover { transform: scale(1.04) rotate(-1.5deg); box-shadow: 0 16px 36px rgba(0,0,0,.16); }
.exp-modalidad-card image-slot { transition: transform .35s ease; display: block; }
.exp-modalidad-card:hover image-slot { transform: scale(1.08); }
.exp-modalidad-body { padding: 26px 22px 30px; }
.exp-modalidad-body h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin-bottom: 40px; line-height: 1.3; }
.exp-modalidad-body p { font-size: 0.88rem; color: rgba(10,15,46,.6); line-height: 1.55; margin-bottom: 18px; }
.exp-modalidad-plus {
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--gold); color: var(--navy); font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px var(--gold-glow); transition: transform .25s;
}
.exp-modalidad-plus:hover { transform: scale(1.12) rotate(90deg); }
.exp-modalidad-bar { height: 6px; width: 100%; }
@media (max-width: 1100px) {
  .exp-modalidades-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .exp-modalidades-grid { grid-template-columns: 1fr; }
}

.exp-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); overflow: hidden; flex-shrink: 0;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column; position: relative;
}
.exp-card:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(0,0,0,.55); border-color: rgba(255,198,30,.5); }
.exp-card-img {
  width: 100%; aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: rgba(255,255,255,.9);
}
.exp-card-body { padding: 12px 14px 14px; flex: 1; position: relative; }
.exp-card-body h4 { font-weight: 800; font-size: 0.88rem; margin-bottom: 4px; color: #fff; }
.exp-meta { display: flex; flex-wrap: wrap; gap: 6px 10px; font-size: 0.68rem; color: var(--gold); font-weight: 700; margin-bottom: 5px; }
.exp-new-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--gold); color: var(--navy); font-size: 0.65rem; font-weight: 900;
  letter-spacing: .5px; padding: 3px 9px; border-radius: 20px;
}
.exp-card-body p  { font-size: 0.76rem; color: rgba(255,255,255,.6); line-height: 1.4; margin-bottom: 10px; }
.exp-more {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 6px;
  background: transparent; border: 1px solid rgba(255,198,30,.4); color: var(--gold);
  border-radius: 50px; padding: 8px 10px; font-family: var(--font-body); font-weight: 700;
  font-size: 0.76rem; cursor: pointer; transition: background .2s, color .2s;
}
.exp-more:hover { background: var(--gold); color: var(--navy); }

.carousel-btn {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 0.88rem;
  transition: background .2s; z-index: 5;
}
.carousel-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.carousel-btn:disabled { opacity: .3; cursor: default; }
.exp-conoce-mas-row { display: flex; justify-content: center; margin-top: 36px; }
.exp-conoce-mas-row .btn-gold { flex: 0 0 auto; white-space: nowrap; }

/* =========================================
   CORAZÓN (HOME)
   ========================================= */
.corazon-home-section { background: #fdeaee; padding: 70px 24px; position: relative; z-index: 2; }
.corazon-home-wrapper { max-width: 1100px; }
.corazon-home-header { display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.corazon-home-title { font-family: var(--font-head); font-weight: 900; font-size: clamp(2rem,4vw,2.8rem); color: #e05572; text-align: center; margin-bottom: 18px; }
.corazon-home-sub { font-size: 1rem; color: rgba(10,15,46,.65); line-height: 1.7; max-width: 760px; margin: 0 auto 40px; text-align: center; }
.corazon-home-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.corazon-home-card {
  background: #fff; border-radius: 16px; padding: 32px 26px; text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.06); transition: transform .35s ease, box-shadow .35s ease;
}
.corazon-home-card:hover { transform: scale(1.05) rotate(-1.5deg); box-shadow: 0 16px 36px rgba(0,0,0,.14); }
.corazon-home-num {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.3rem; margin: 0 auto 22px;
}
.corazon-home-card h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); margin-bottom: 12px; }
.corazon-home-card p { font-size: 0.88rem; color: rgba(10,15,46,.6); line-height: 1.6; }
.corazon-home-cta-row { display: flex; justify-content: center; margin-top: 40px; }
.corazon-home-cta-row .btn-gold { flex: 0 0 auto; white-space: nowrap; }

/* =========================================
   TALLERES (HOME CALENDAR)
   ========================================= */
.talleres-section { background: var(--navy); padding: 80px 24px; position: relative; z-index: 2; }
.talleres-wrapper { display: grid; grid-template-columns: 360px 1fr; gap: 32px; max-width: 1000px; margin: 0 auto; align-items: start; }

.talleres-calendar { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 22px; }
.talleres-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.talleres-cal-header .carousel-btn { width: 34px; height: 34px; font-size: 0.75rem; }
.talleres-cal-month { font-family: var(--font-head); font-size: 1.05rem; color: #fff; }
.talleres-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; text-align: center; }
.talleres-cal-dow { margin-bottom: 6px; }
.talleres-cal-dow span { font-size: 0.7rem; color: rgba(255,255,255,.4); font-weight: 800; }
.talleres-cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: rgba(255,255,255,.8); border-radius: 8px; position: relative;
}
.talleres-cal-day.other { color: rgba(255,255,255,.2); }
.talleres-cal-day.has-event::after {
  content: ''; position: absolute; bottom: 4px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}
.talleres-cal-day.selected { background: var(--gold); color: var(--navy); font-weight: 800; }
.talleres-cal-day.selected::after { background: var(--navy); }
.talleres-cal-legend { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 0.75rem; color: rgba(255,255,255,.5); }
.talleres-cal-legend .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.talleres-list-header { font-family: var(--font-head); font-size: 1.1rem; color: #fff; margin-bottom: 18px; }
.taller-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.taller-item-icon {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
}
.taller-item-body h4 { font-weight: 800; font-size: 0.95rem; color: #fff; margin-bottom: 4px; }
.taller-item-time { font-size: 0.75rem; color: var(--gold); font-weight: 700; display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.taller-item-body p { font-size: 0.82rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.talleres-list-cta { margin-top: 22px; width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .talleres-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .corazon-home-grid { grid-template-columns: 1fr; }
}

/* =========================================
   TESTIMONIOS
   ========================================= */
.testimonios-section {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, #0a0b22 0%, var(--navy) 100%);
  padding: 80px 24px;
}
.testimonios-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 28px; }
.testimonio-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 28px 24px 22px;
  transition: transform .3s, border-color .3s;
}
.testimonio-card:hover { transform: translateY(-4px); border-color: rgba(255,198,30,.4); }
.quote-mark { font-size: 4rem; line-height: .8; color: var(--gold); opacity: .35; font-family: Georgia,serif; margin-bottom: 10px; }
.testimonio-card > p { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,.8); margin-bottom: 18px; }
.testimonio-footer { display: flex; align-items: center; gap: 10px; }
.testimonio-footer img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.testimonio-footer strong { font-size: 0.88rem; color: #fff; display: block; }
.stars { color: var(--gold); font-size: 0.82rem; margin-top: 2px; }
.testimonios-dots { display: flex; gap: 8px; justify-content: center; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.2); cursor: pointer; transition: background .2s, transform .2s; }
.dot.active { background: var(--gold); transform: scale(1.3); }

/* =========================================
   APP BANNER
   ========================================= */
.app-banner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px;
  align-items: center; padding: 60px 48px;
}
.app-left {
  background: linear-gradient(135deg,#ffc61e,#ff6b35);
  border-radius: var(--radius-lg); padding: 36px 32px; color: #fff;
}
.app-right {
  background: linear-gradient(135deg,#1a1b5e, var(--navy-mid));
  border: 1px solid rgba(255,198,30,.3); border-radius: var(--radius-lg); padding: 36px 32px;
}
.app-left h3, .app-right h3 { font-family: var(--font-head); font-size: 1.5rem; line-height: 1.2; margin-bottom: 10px; }
.app-left p,  .app-right p  { font-size: 0.88rem; margin-bottom: 22px; opacity: .9; line-height: 1.5; }
.app-stores { display: flex; gap: 10px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,0,0,.3); color: #fff; border: 1px solid rgba(255,255,255,.4);
  border-radius: 10px; padding: 9px 18px; text-decoration: none;
  font-weight: 700; font-size: 0.85rem; transition: background .2s;
}
.store-btn:hover { background: rgba(0,0,0,.5); }
.app-ctas { display: flex; flex-direction: column; gap: 10px; }
.app-ctas .btn-gold { justify-content: center; }

.app-center { display: flex; justify-content: center; }
.phone-mockup {
  width: 150px; height: 280px;
  background: linear-gradient(160deg,#1a1b5e,#0d0e2e);
  border: 3px solid rgba(255,198,30,.65); border-radius: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 40px rgba(255,198,30,.2);
  position: relative; overflow: hidden;
}
.phone-mockup::before { content:''; position:absolute; top:8px; left:50%; transform:translateX(-50%); width:38px; height:4px; background:rgba(255,255,255,.15); border-radius:3px; }
.phone-screen { text-align:center; }
.phone-screen img { width:70px; }
.phone-app-name { font-weight:900; font-size:0.85rem; color:var(--gold); margin-top:4px; }
.phone-elements { display:flex; justify-content:space-around; font-size:1.6rem; margin-top:10px; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background:#07081a; border-top:1px solid rgba(255,255,255,.06); padding:60px 24px 0; position:relative; z-index:2; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:44px; max-width:1200px; margin:0 auto 36px; }
.footer-brand .footer-logo { height:60px; margin-bottom:14px; }
.footer-brand p { color:rgba(255,255,255,.45); font-size:0.83rem; line-height:1.6; margin-bottom:18px; }
.footer-social { display:flex; gap:10px; }
.footer-social a {
  width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12); display:flex; align-items:center;
  justify-content:center; color:rgba(255,255,255,.55); font-size:0.85rem;
  text-decoration:none; transition:background .2s, color .2s;
}
.footer-social a:hover { background:var(--gold); color:var(--navy); border-color:var(--gold); }
.footer-col h4 { font-weight:800; font-size:0.88rem; color:#fff; margin-bottom:14px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col ul li a { color:rgba(255,255,255,.45); font-size:0.83rem; text-decoration:none; transition:color .2s; }
.footer-col ul li a i { display: none; }
.footer-col ul li a:hover { color:var(--gold); }
.footer-contact { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-contact li { display:flex; gap:9px; align-items:flex-start; color:rgba(255,255,255,.45); font-size:0.83rem; }
.footer-contact li i { color:var(--gold); margin-top:3px; flex-shrink:0; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.06); padding:18px 0;
  display:flex; justify-content:space-between; align-items:center;
  max-width:1200px; margin:0 auto; color:rgba(255,255,255,.28);
  font-size:0.78rem; flex-wrap:wrap; gap:8px;
}
.heart { color:var(--pink); }

/* =========================================
   NUESTRA HISTORIA
   ========================================= */
.historia-section { background: #fff; padding: 0; position: relative; z-index: 2; overflow: hidden; }
.historia-bg { position: absolute; inset: 0; background-size: cover; background-position: right center; }
.historia-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.85) 42%, rgba(255,255,255,.55) 58%, rgba(255,255,255,.15) 78%); }
.historia-wrapper { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 32px; align-items: center; max-width: 1240px; padding: 90px 24px; }
.historia-text { position: relative; z-index: 1; min-width: 0; }
.historia-text .section-label { text-align: left; }
.historia-quote-mark { font-size: 3.6rem; line-height: .6; color: var(--gold); font-family: Georgia,serif; margin: 10px 0 6px; }
.historia-quote { font-family: var(--font-body); font-weight: 800; font-size: clamp(1.1rem,1.7vw,1.35rem); line-height: 1.55; color: var(--navy); font-style: normal; }
.historia-quote .gold { color: var(--gold-dark); }
.historia-divider { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 22px 0 18px; }
.historia-footer-text { font-size: 0.95rem; color: rgba(10,15,46,.65); line-height: 1.6; max-width: 380px; }
.historia-photo { display: flex; justify-content: center; min-width: 0; }
.historia-photo img { width: 100%; max-width: 420px; object-fit: contain; }

/* =========================================
   NOSOTROS PAGE — REDESIGN
   ========================================= */
.nosotros-hero { background: var(--navy); padding: 150px 24px 50px; text-align: center; position: relative; z-index: 2; }
.nosotros-hero-wrapper { max-width: 760px; }
.nosotros-hero-title { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.2rem,5vw,3.4rem); color: #fff; margin-bottom: 16px; }
.nosotros-hero-sub { font-size: clamp(1.1rem,2vw,1.4rem); color: var(--gold); font-weight: 700; margin-bottom: 18px; line-height: 1.5; }
.nosotros-hero-support { font-size: 1rem; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 600px; margin: 0 auto 28px; }
.nosotros-hero-cta { color: var(--gold); font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.nosotros-hero-cta:hover { color: #fff; }

.nosotros-subnav {
  background: #0a0b22; border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; padding: 14px 24px;
  position: sticky; top: 0; z-index: 50;
}
.nosotros-subnav a {
  color: rgba(255,255,255,.6); text-decoration: none; font-weight: 700; font-size: 0.82rem;
  padding: 8px 16px; border-radius: 50px; transition: color .2s, background .2s;
}
.nosotros-subnav a:hover { color: var(--navy); background: var(--gold); }

.proposito-section { background: #fff; padding: 70px 24px; position: relative; z-index: 2; overflow: hidden; }
.proposito-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; max-width: 1100px; }
.proposito-wrapper { max-width: 560px; }
.proposito-title { font-family: var(--font-head); font-size: clamp(1.6rem,3vw,2.2rem); color: var(--navy); margin-bottom: 20px; }
.proposito-copy { color: rgba(10,15,46,.7); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.proposito-pullquote {
  font-family: var(--font-head); font-size: clamp(1.3rem,2.4vw,1.7rem); color: var(--gold-dark);
  margin-top: 24px; line-height: 1.5; font-style: normal;
}

.nosotros-photo-frame { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 16px 40px rgba(10,15,46,.15); }
.nosotros-photo-frame image-slot { transition: transform .4s ease; display: block; }
.nosotros-photo-frame:hover image-slot { transform: scale(1.08) rotate(-2deg); }

.origin-section { background: #fff; padding: 70px 24px; position: relative; z-index: 2; overflow: hidden; }
.origin-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; max-width: 1100px; }
.origin-wrapper { max-width: 560px; }
.origin-title { font-family: var(--font-head); font-size: clamp(1.6rem,3vw,2.2rem); color: var(--navy); margin-bottom: 20px; }
.origin-quote-mark { font-size: 4rem; line-height: .8; color: var(--gold-dark); opacity: .5; font-family: Georgia,serif; margin-bottom: 6px; }
.origin-quote { font-family: var(--font-head); font-size: 1.15rem; line-height: 1.6; color: var(--navy); font-style: normal; }
.origin-signature { margin-top: 16px; color: var(--gold-dark); font-weight: 700; font-size: 0.85rem; }

.values-intro { text-align: center; max-width: 620px; margin: 0 auto 36px; color: rgba(255,255,255,.65); font-size: 0.95rem; line-height: 1.6; }

.equipo-section { background: #0a0b22; padding: 70px 24px; position: relative; z-index: 2; }
.equipo-wrapper { max-width: 800px; }
.equipo-copy { text-align: center; color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.8; margin-bottom: 24px; max-width: 640px; margin-left: auto; margin-right: auto; }
.equipo-pullquote {
  text-align: center; font-family: var(--font-head); font-size: clamp(1.2rem,2.2vw,1.5rem); color: var(--gold);
  margin: 0 auto 40px; max-width: 620px; line-height: 1.5; font-style: normal;
}
.equipo-beliefs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.equipo-belief-item {
  display: flex; align-items: flex-start; gap: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 16px 18px; font-size: 0.88rem; color: rgba(255,255,255,.75); line-height: 1.5;
}
.equipo-belief-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.corazon-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 30px; }
.corazon-trust-item {
  background: rgba(10,15,46,.04); border: 1px solid rgba(10,15,46,.1); border-radius: 12px;
  padding: 16px 14px; font-size: 0.8rem; color: rgba(10,15,46,.65); text-align: center; line-height: 1.5;
}
.corazon-trust-item i { display: block; font-size: 1.2rem; color: var(--gold-dark); margin-bottom: 8px; }
.corazon-anchor { text-align: center; font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); margin-top: 30px; font-style: normal; }
.corazon-cta-row { display: flex; justify-content: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.corazon-cta-row .btn-gold, .corazon-cta-row .btn-outline { flex: 0 0 auto; white-space: nowrap; }

.nosotros-final-cta { background: linear-gradient(135deg, var(--navy) 0%, #10113a 100%); padding: 80px 24px; text-align: center; position: relative; z-index: 2; }
.nosotros-final-wrapper { max-width: 600px; }
.nosotros-final-copy { color: rgba(255,255,255,.75); font-size: 1.05rem; margin: 16px 0 28px; }
.nosotros-final-cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.nosotros-final-cta-row .btn-gold, .nosotros-final-cta-row .btn-outline { flex: 0 0 auto; white-space: nowrap; }

@media (max-width: 900px) {
  .proposito-grid, .origin-grid { grid-template-columns: 1fr; }
  .nosotros-photo-frame { max-width: 360px; margin: 0 auto; aspect-ratio: 4/3; }
  .equipo-beliefs-grid { grid-template-columns: 1fr; }
  .corazon-trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .historia-bg { opacity: .5; }
  .historia-wrapper { grid-template-columns: 1fr; text-align: center; padding: 60px 24px; }
  .historia-text .section-label { text-align: center; }
  .historia-footer-text { max-width: none; margin: 0 auto; }
  .historia-photo img { max-width: 280px; }
}

/* =========================================
   EXPERIENCE DETAIL PAGE
   ========================================= */
.exp-detail-hero { background: var(--navy); padding: 130px 24px 40px; position: relative; z-index: 2; }
.exp-detail-hero-inner { max-width: 900px; }
.exp-detail-back { color: var(--gold); font-size: 0.85rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.exp-detail-back:hover { color: #fff; }
.exp-detail-badge {
  display: inline-block; background: rgba(255,198,30,.15); color: var(--gold); font-size: 0.72rem; font-weight: 800;
  letter-spacing: .5px; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
}
.exp-detail-hero .section-title { margin-bottom: 10px; font-size: clamp(1.8rem,3vw,2.4rem); }
.exp-detail-section { background: #0a0b22; padding: 50px 24px 80px; position: relative; z-index: 2; }
.exp-detail-grid { max-width: 1000px; display: grid; grid-template-columns: 260px 1fr 280px; gap: 36px; align-items: start; }
.exp-detail-media { display: flex; }
.exp-detail-icon {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: #fff;
}
.exp-detail-desc { color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.8; margin-bottom: 26px; }
.exp-detail-subtitle { font-family: var(--font-head); font-size: 1.05rem; color: #fff; margin-bottom: 14px; }
.exp-detail-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.exp-detail-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,.75); }
.exp-detail-list li i { color: var(--gold); margin-top: 3px; }
#expDetailReservar { width: 100%; justify-content: center; flex-wrap: wrap; text-align: center; }
.exp-detail-ficha {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 24px;
}
.exp-detail-ficha dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--gold); font-weight: 800; margin-top: 16px; }
.exp-detail-ficha dt:first-child { margin-top: 0; }
.exp-detail-ficha dd { font-size: 0.88rem; color: rgba(255,255,255,.75); margin: 4px 0 0; line-height: 1.5; }

@media (max-width: 900px) {
  .exp-detail-grid { grid-template-columns: 1fr; }
  .exp-detail-media { max-width: 180px; margin: 0 auto; }
}

/* =========================================
   BLOG POST DETAIL PAGE
   ========================================= */
.blog-post-section { background: #fff; padding: 40px 24px 70px; position: relative; z-index: 2; }
.blog-post-container { max-width: 760px; }
.blog-post-hero-img {
  width: 100%; aspect-ratio: 16/8; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: #fff; margin-bottom: 32px;
}
.blog-post-body p { font-size: 1.05rem; line-height: 1.9; color: rgba(10,15,46,.78); margin-bottom: 22px; }

@media (max-width: 900px) {
  .historia-wrapper { grid-template-columns: 1fr; text-align: center; }
  .historia-text .section-label { text-align: center; }
  .historia-photo img { max-width: 280px; }
}

/* =========================================
   BLOG
   ========================================= */
.blog-section { background: linear-gradient(180deg, var(--navy) 0%, #0a0b22 100%); padding: 80px 24px 100px; position: relative; z-index: 2; text-align: center; overflow: visible; }
.blog-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,198,30,.4); color: var(--gold);
  font-weight: 800; font-size: 0.78rem; letter-spacing: 1px;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 20px;
}
.blog-heading { font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.6rem); line-height: 1.2; color: #fff; margin-bottom: 14px; }
.blog-lead { color: var(--text-soft); font-size: 0.95rem; max-width: 480px; margin: 0 auto 50px; }

.blog-fan { display: flex; justify-content: center; align-items: flex-start; flex-wrap: wrap; gap: 0; margin-bottom: 44px; }
.blog-card-v2 {
  background: rgba(16,17,50,.94); border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px; overflow: hidden; width: 250px; flex-shrink: 0;
  margin: 0 -10px; transform: rotate(var(--rot,0deg));
  transition: transform .3s ease, box-shadow .3s ease, z-index 0s;
  position: relative;
}
.blog-card-v2:hover { transform: rotate(0deg) translateY(-10px); z-index: 5; box-shadow: 0 20px 50px rgba(0,0,0,.5); border-color: rgba(255,198,30,.4); }
.blog-card-img { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: rgba(255,255,255,.9); }
.blog-card-body { padding: 16px 18px 20px; position: relative; }
.blog-tag-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.blog-tag { background: rgba(255,198,30,.15); color: var(--gold); font-size: 0.66rem; font-weight: 800; letter-spacing: .5px; padding: 4px 10px; border-radius: 20px; }
.blog-time { font-size: 0.72rem; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 4px; }
.blog-card-v2 h4 { font-weight: 800; font-size: 0.94rem; line-height: 1.35; color: #fff; padding-right: 34px; }
.blog-arrow {
  position: absolute; bottom: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--gold);  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; text-decoration: none; transition: background .2s, color .2s;
}
.blog-arrow:hover { background: var(--gold); color: var(--navy); }
.blog-cta-row { display: flex; justify-content: center; }
.blog-cta-row .btn-gold { display: inline-flex !important; white-space: nowrap; flex-shrink: 0; }
.blog-cta-row .btn-gold::after { display: none; }

/* BLOG LISTING PAGE */
.blog-listing-section { background: #0a0b22; padding: 20px 24px 90px; position: relative; z-index: 2; }
.blog-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.blog-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1000px; margin: 0 auto 40px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; transition: border-color .2s, transform .2s;
}
.blog-featured:hover { border-color: rgba(255,198,30,.4); transform: translateY(-4px); }
.blog-featured-img { display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,.9); min-height: 220px; }
.blog-featured-body { padding: 30px 32px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.blog-featured-body h2 { font-family: var(--font-head); font-size: 1.5rem; color: #fff; line-height: 1.3; }
.blog-featured-body p { color: rgba(255,255,255,.65); font-size: 0.92rem; line-height: 1.6; }
.blog-arrow-inline { color: var(--gold); font-weight: 700; font-size: 0.87rem; display: inline-flex; align-items: center; gap: 8px; }

.blog-listing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.blog-read-more {
  color: var(--gold); font-weight: 800; font-size: 0.82rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; margin-top: 6px;
}
.blog-read-more:hover { color: #fff; }
.blog-read-more i { font-size: 0.72rem; transition: transform .2s; }
.blog-read-more:hover i { transform: translateX(3px); }
.blog-listing-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  overflow: hidden; position: relative; transition: transform .25s, border-color .25s;
}
.blog-listing-card:hover { transform: translateY(-6px); border-color: rgba(255,198,30,.4); }
.blog-listing-card .blog-card-body { padding: 16px 18px 44px; }
.blog-listing-card h4 { font-weight: 800; font-size: 0.95rem; color: #fff; margin-bottom: 8px; line-height: 1.35; }
.blog-listing-card p { font-size: 0.83rem; color: rgba(255,255,255,.6); line-height: 1.5; }

@media (max-width: 900px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 900px) {
  .blog-fan { flex-direction: column; align-items: center; gap: 20px; }
  .blog-card-v2 { margin: 0; transform: none; }
  .blog-card-v2:hover { transform: translateY(-6px); }
}

/* =========================================
   ASISTENTE IA FLOTANTE — CONEJO
   ========================================= */
.ia-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  display: flex; align-items: center; justify-content: center;
  width: 62px; height: 62px; padding: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none; border-radius: 50%;
  color: var(--navy); font-family: var(--font-body); font-weight: 800; font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 6px 28px var(--gold-glow);
  transition: transform .25s, box-shadow .25s;
  animation: rabbitFloat 3s ease-in-out infinite;
}
.ia-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 40px rgba(255,198,30,.7);
  animation: none;
}
.ia-rabbit { width: 40px; height: 40px; object-fit: contain; animation: rabbitEar 2s ease-in-out infinite; }
@keyframes rabbitEar {
  0%,100% { transform: rotate(0deg); }
  25%      { transform: rotate(-8deg); }
  75%      { transform: rotate(8deg); }
}
.ia-float-label { display: none; }
.ia-float-badge {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #ef4444; color: #fff;
  font-size: 0.7rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #0d0e2e;
  animation: badgePop .4s ease;
}
.ia-float-badge.hidden { display: none; }
@keyframes badgePop { from { transform: scale(0); } to { transform: scale(1); } }

@keyframes rabbitFloat {
  0%,100% { box-shadow: 0 6px 28px var(--gold-glow); transform: translateY(0); }
  50%      { box-shadow: 0 10px 40px rgba(255,198,30,.55); transform: translateY(-4px); }
}

/* IA PANEL */
.ia-panel {
  position: fixed; bottom: 92px; right: 28px; z-index: 999;
  width: 340px;
  background: rgba(10,11,35,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(139,92,246,.4);
  border-radius: 24px;
  box-shadow: 0 16px 56px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.06);
  display: flex; flex-direction: column;
  transform: translateY(24px) scale(.93);
  opacity: 0; pointer-events: none;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s;
  overflow: hidden;
  max-height: 580px;
}
.ia-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }

.ia-panel-header {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  background: linear-gradient(135deg, rgba(139,92,246,.25), rgba(58,176,226,.2));
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.ia-panel-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0; position: relative;
  overflow: hidden;
}
.ia-rabbit-big { width: 34px; height: 34px; object-fit: contain; }
.ia-panel-info { flex: 1; min-width: 0; }
.ia-panel-info .chat-bot-name { font-size: 0.9rem; }
.ia-panel-info .chat-bot-sub  { font-size: 0.73rem; color: rgba(255,255,255,.55); margin-top: 2px; }

.ia-panel-close {
  background: rgba(255,255,255,.08); border: none; color: rgba(255,255,255,.55);
  cursor: pointer; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: background .2s, color .2s; flex-shrink: 0;
}
.ia-panel-close:hover { background: rgba(255,255,255,.18); color: #fff; }

/* Welcome bubble */
.ia-welcome { padding: 12px 14px 4px; flex-shrink: 0; }
.ia-welcome-bubble {
  background: linear-gradient(135deg,rgba(139,92,246,.2),rgba(58,176,226,.15));
  border: 1px solid rgba(139,92,246,.3);
  border-radius: 14px 14px 14px 0;
  padding: 10px 14px; font-size: 0.82rem; line-height: 1.5;
  color: rgba(255,255,255,.88);
}

.ia-panel .chat-messages {
  max-height: 160px; padding: 8px 14px;
  flex-shrink: 0;
}

/* Suggestions grid */
.ia-suggestions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 8px 14px 10px;
  flex-shrink: 0;
  overflow-y: auto;
  max-height: 200px;
  scrollbar-width: thin;
  scrollbar-color: rgba(139,92,246,.3) transparent;
}
.ia-panel-footer {
  text-align: center; padding: 6px 14px 8px;
  font-size: 0.67rem; color: rgba(255,255,255,.28);
  border-top: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}

/* =========================================
   MODAL
   ========================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.82); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--navy-mid);
  border: 1px solid rgba(255,198,30,.35);
  border-radius: var(--radius-lg); width: 100%; max-width: 720px;
  max-height: 94vh; overflow-y: auto; position: relative;
  animation: slideUp .3s ease;
}
@keyframes slideUp { from { transform:translateY(40px);opacity:0; } to { transform:translateY(0);opacity:1; } }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.1); border: none; color: #fff;
  width: 34px; height: 34px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.2); }
.modal-header { text-align: center; padding: 18px 28px 12px; border-bottom: 1px solid rgba(255,255,255,.07); }
.modal-header img { height: 40px; margin-bottom: 6px; }
.modal-header h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 4px; }
.modal-header p { color: var(--text-soft); font-size: 0.82rem; }
.modal-body { padding: 16px 28px 20px; display: flex; flex-direction: column; gap: 10px; }
.modal-body-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.form-group-full { grid-column: 1 / -1; }
.modal-narrow { max-width: 480px; }
.modal-cotizador { background: transparent; border: none; box-shadow: none; max-width: 720px; padding: 0; max-height: 92vh; }
.modal-cotizador .modal-close { position: absolute; top: 10px; right: 10px; z-index: 5; background: rgba(0,0,0,.5); }
.form-group { gap: 4px; }
.form-group label { font-size: 0.78rem; }
.form-group input, .form-group select, .form-group textarea { padding: 9px 13px; font-size: 0.87rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-weight: 700; font-size: 0.83rem; color: rgba(255,255,255,.65); }
.form-group input, .form-group select {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 11px 15px; color: #fff;
  font-family: var(--font-body); font-size: 0.9rem; outline: none;
  transition: border-color .2s;
}
.form-group input::placeholder { color: rgba(255,255,255,.28); }
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy-mid); }

/* UBICACIONES */
.ubicacion-item { display:flex; align-items:flex-start; gap:14px; padding:16px; background:rgba(255,255,255,.04); border-radius:var(--radius); margin-bottom:10px; border:1px solid rgba(255,255,255,.08); }
.ubicacion-icon { width:40px;height:40px;border-radius:50%;background:rgba(255,198,30,.15);color:var(--gold);display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0; }
.ubicacion-item h4 { font-weight:800;font-size:0.92rem;margin-bottom:4px; }
.ubicacion-item p  { font-size:0.82rem;color:var(--text-soft); }
.ubi-horario { display:flex;align-items:center;gap:5px;font-size:0.78rem;color:var(--gold);margin-top:5px; }

/* TOAST */
.toast {
  position: fixed; bottom: 100px; right: 28px; z-index: 3000;
  padding: 14px 22px; border-radius: 14px;
  display: flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 0.88rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transform: translateY(16px); opacity: 0;
  transition: transform .3s, opacity .3s; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--green); color: #fff; }
.toast.error   { background: #ef4444;     color: #fff; }

/* =========================================
   PAGE HERO (sub-pages)
   ========================================= */
.page-hero {
  position: relative; z-index: 2; text-align: center;
  padding: 150px 24px 20px;
  background: linear-gradient(180deg, var(--navy) 0%, #0a0b22 100%);
}
.page-hero-sub { color: var(--text-soft); font-size: 0.95rem; max-width: 560px; margin: 0 auto; }

/* =========================================
   NOSOTROS — ABOUT INTRO
   ========================================= */
.about-section { background: var(--navy); padding: 10px 24px 20px; position: relative; z-index: 2; }
.about-intro { max-width: 760px; text-align: center; color: rgba(255,255,255,.75); font-size: 1.02rem; line-height: 1.8; }

/* ORIGIN QUOTE */
/* ORIGIN QUOTE colors overridden below for white section */

/* VALUES GRID */
.values-section { background: #0a0b22; padding: 60px 24px; position: relative; z-index: 2; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 1000px; margin: 0 auto; }
.value-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 26px 22px; }
.value-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: #fff;
  font-weight: 900; font-size: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.value-item h4 { font-weight: 800; font-size: 0.98rem; margin-bottom: 6px; color: #fff; }
.value-item p { font-size: 0.85rem; color: rgba(255,255,255,.6); line-height: 1.55; }

/* CORAZÓN PROGRAM */
.corazon-section { background: #fff; padding: 60px 24px; position: relative; z-index: 2; }
.corazon-wrapper { max-width: 820px; text-align: center; }
.corazon-heart { font-size: 2rem; color: var(--pink); margin-bottom: 8px; }
.corazon-sub { color: rgba(10,15,46,.65); font-size: 0.95rem; max-width: 600px; margin: 0 auto 30px; line-height: 1.6; }
.corazon-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; text-align: left; }
.corazon-step { background: rgba(10,15,46,.04); border: 1px solid rgba(10,15,46,.1); border-radius: var(--radius-lg); padding: 22px; }
.corazon-step h4 { font-weight: 800; font-size: 0.95rem; margin-bottom: 6px; color: var(--navy); }
.corazon-step p { font-size: 0.83rem; color: rgba(10,15,46,.6); line-height: 1.5; }

/* VISION */
.vision-section { background: var(--navy); padding: 60px 24px 80px; position: relative; z-index: 2; }
.vision-wrapper { max-width: 680px; text-align: center; }
.vision-star { font-size: 1.6rem; color: var(--gold); margin-bottom: 10px; }
.vision-text { color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.75; margin-top: 8px; }

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .corazon-steps { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* =========================================
   FIESTAS
   ========================================= */
.fiestas-section { background: linear-gradient(180deg, var(--navy) 0%, #0a0b22 100%); padding: 40px 24px 90px; position: relative; z-index: 2; }
.fiestas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto; align-items: stretch; }
.fiesta-pkg {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 32px 26px; display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.fiesta-pkg.featured { border-color: var(--gold); background: rgba(255,198,30,.07); transform: scale(1.03); }
.fiesta-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-weight: 900; font-size: 0.7rem; letter-spacing: 1px; padding: 5px 14px; border-radius: 20px; }
.fiesta-pkg h3 { font-family: var(--font-head); font-size: 1.3rem; }
.fiesta-price { color: var(--gold); font-weight: 800; font-size: 1.15rem; }
.fiesta-pkg ul { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.fiesta-pkg ul li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.87rem; color: rgba(255,255,255,.75); }
.fiesta-pkg ul li i { color: var(--gold); margin-top: 3px; }
.fiesta-btn { width: 100%; justify-content: center; }

/* FIESTA LINES (real service lines) */
.fiestas-grid-lines { grid-template-columns: repeat(3,1fr); }
.fiesta-line {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 30px 24px; display: flex; flex-direction: column; gap: 12px;
  position: relative; text-align: left;
}
.fiesta-line.featured { border-color: var(--gold); background: rgba(255,198,30,.07); }
.fiesta-line-icon {
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,198,30,.15); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 4px;
}
.fiesta-line h3 { font-family: var(--font-head); font-size: 1.1rem; }
.fiesta-line p { font-size: 0.87rem; color: rgba(255,255,255,.65); line-height: 1.55; flex: 1; }
.fiesta-karaoke-note {
  max-width: 700px; margin: 34px auto 0; text-align: center;
  color: var(--gold); font-size: 0.86rem; font-weight: 700;
  background: rgba(255,198,30,.08); border: 1px solid rgba(255,198,30,.25);
  border-radius: 14px; padding: 14px 20px;
}

/* =========================================
   CONTACTO
   ========================================= */
.contacto-section { background: var(--navy); padding: 20px 24px 90px; position: relative; z-index: 2; }
.contacto-wrapper { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; max-width: 1000px; }
.contacto-form-box, .contacto-info-box {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; gap: 14px;
}
.contacto-form-box h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 4px; }
.contacto-info-box .ubicacion-item { background: transparent; border: none; padding: 0; margin-bottom: 0; }
.form-group textarea {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 11px 15px; color: #fff; resize: vertical;
  font-family: var(--font-body); font-size: 0.9rem; outline: none;
  transition: border-color .2s;
}
.form-group textarea::placeholder { color: rgba(255,255,255,.28); }
.form-group textarea:focus { border-color: var(--gold); }

@media (max-width: 900px) {
  .fiestas-grid { grid-template-columns: 1fr; max-width: 420px; }
  .fiestas-grid-lines { max-width: 480px; }
  .fiesta-pkg.featured { transform: none; }
  .contacto-wrapper { grid-template-columns: 1fr; }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .hero { padding:120px 24px 100px; }
  .agenda-wrapper { grid-template-columns:1fr; }
  .agenda-body { grid-template-columns:1fr; }
  .agenda-right { flex-direction:row; }
  .app-banner { grid-template-columns:1fr; gap:20px; padding:36px 24px; }
  .app-center { order:-1; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .props-grid { grid-template-columns: repeat(2,1fr); }
  .nav-logo img { height:56px; }
  .nav-link { font-size:0.82rem; padding:8px 9px; }
  .nav-cta { font-size:0.8rem; padding:9px 14px; margin-left:6px; }
  .lang-toggle { padding:7px 10px; font-size:0.74rem; margin-left:6px; }
}

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

@media (max-width: 1180px) {
  .nav-container { padding:8px 16px; }
  .hamburger { order: -1; }
  .nav-logo { order: 1; margin-left: auto; }
  .nav-logo img { height:52px; }
  .nav-links {
    display: flex; flex-direction: column; align-items: stretch; position: fixed; left: 0; top: 0; bottom: 0;
    width: 280px; max-width: 80vw; background: rgba(13,14,46,.98);
    padding: 100px 24px 28px; gap: 6px; z-index: 999;
    transform: translateX(-100%); transition: transform .3s ease;
    box-shadow: 8px 0 40px rgba(0,0,0,.5); margin-left: 0;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links::before { content: "NAVEGACIÓN"; font-size: 0.72rem; letter-spacing: 2px; color: var(--gold); font-weight: 800; opacity: .8; margin-bottom: 8px; text-align: left; }
  .nav-link { display: flex; align-items: center; gap: 12px; justify-content: flex-start; }
  .nav-link i { width: 18px; text-align: center; color: var(--gold); font-size: 0.95rem; display: inline-block; }
  .nav-link.active i { color: var(--navy); }
  .nav-drawer-logo { display: flex; justify-content: flex-start; margin-bottom: 8px; }
  .nav-drawer-logo img { height: 44px; }
  .nav-drawer-bottom {
    display: flex; flex-direction: column; gap: 14px;
    margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-drawer-cta { width: 100%; justify-content: center; }
  .nav-drawer-social { display: flex; gap: 10px; }
  .nav-drawer-social a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); text-decoration: none; transition: background .2s, color .2s;
  }
  .nav-drawer-social a:hover { background: var(--gold); color: var(--navy); }
  .nav-link { font-size:1.05rem; padding:13px 18px; }
  .hamburger { display:flex; }
  .nav-cta { display:none; }

  .hero { padding:96px 20px 130px; min-height:auto; }
  .hero-content { flex-direction:column; text-align:center; align-items:center; }
  .hero-text { max-width:100%; }
  .hero-title { font-size:clamp(2rem,8vw,2.8rem); }
  .hero-sub br { display:none; }
  .hero-btns { justify-content:center; }
  .hero-social-proof { justify-content:center; flex-wrap:wrap; text-align:center; }

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

  .agenda-right { flex-direction:column; }

  .app-banner { padding:36px 20px; }
  .app-left, .app-right { padding:28px 22px; }

  .testimonios-grid { gap:16px; }

  .ia-panel { width:calc(100vw - 24px); right:12px; bottom:76px; max-height:520px; }
  .ia-suggestions { grid-template-columns: 1fr; }

  .hero-cloud { height:88px; }
  .hero-cloud::before { background-size:96px 96px; }
  .hero-cloud::after { background-size:58px 58px; }
  .hero-cloud-fill { height:36px; }
}

@media (max-width: 480px) {
  .hero { padding:88px 16px 110px; }
  .hero-title br { display:none; }
  .hero-btns { flex-direction:column; width:100%; }
  .btn-gold, .btn-outline { justify-content:center; width:100%; }
  .props-grid { grid-template-columns:1fr 1fr; gap:12px; }
  .prop-card { padding:26px 16px 20px; }
  .agenda-header { flex-direction:column; }
  .calendar { padding:14px; }
  .app-banner { padding:28px 16px; }
  .app-left h3, .app-right h3 { font-size:1.25rem; }
  .footer-top { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .ia-float { bottom:20px; right:16px; width:56px; height:56px; }
  .ia-panel { bottom:80px; }
  .modal-body { padding:18px 20px 24px; }
  .modal-body-grid { grid-template-columns: 1fr; }
  .modal-header { padding:24px 20px 16px; }
}
