/* ==================================================
   LA RUA 74 — CONTACT PAGE
   css/contact.css
   ================================================== */

/* ── HERO CONTACTO ──────────────────────────────── */
.ct-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 110px;
}
.ct-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ct-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center bottom;
  animation: ct-hero-zoom 18s ease-in-out infinite alternate;
  display: block;
}
@keyframes ct-hero-zoom {
  from { transform: scale(1.06) translateY(0); }
  to   { transform: scale(1.1) translateY(-1.5%); }
}
.ct-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,46,23,0.55) 0%,
    rgba(8,46,23,0.75) 50%,
    rgba(8,46,23,0.97) 100%
  );
  z-index: 1;
}
.ct-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
  padding-top: 60px;
}
.ct-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 20px;
}
.ct-hero__eyebrow::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--dorado);
  opacity: 0.6;
}
.ct-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--crema);
  margin-bottom: 22px;
  max-width: 760px;
}
.ct-hero__title em {
  color: var(--dorado);
  font-style: italic;
}
.ct-hero__sub {
  font-size: 1.05rem;
  color: rgba(237,232,208,0.65);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}
.ct-hero__sub strong { color: var(--dorado); }
.ct-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Chips de info rápida debajo del hero */
.ct-chips {
  background: var(--verde);
  border-bottom: 1px solid rgba(220,178,80,0.15);
  padding: 20px 0;
}
.ct-chips__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.ct-chips__inner::-webkit-scrollbar { display: none; }
.ct-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border-right: 1px solid rgba(220,178,80,0.12);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.3s ease;
}
.ct-chip:last-child { border-right: none; }
.ct-chip:hover { background: rgba(220,178,80,0.07); }
.ct-chip__icon {
  width: 32px; height: 32px;
  background: rgba(220,178,80,0.12);
  border: 1px solid rgba(220,178,80,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dorado);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.ct-chip:hover .ct-chip__icon {
  background: rgba(220,178,80,0.22);
  transform: scale(1.08);
}
.ct-chip__text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--crema);
  line-height: 1.2;
}
.ct-chip__text span {
  font-size: 0.68rem;
  color: rgba(237,232,208,0.45);
  letter-spacing: 0.04em;
}

/* ── SECCIÓN PRINCIPAL — DOS COLUMNAS ───────────── */
.ct-main {
  padding: 100px 0;
  background: var(--blanco);
}
.ct-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: start;
}

/* ── COLUMNA IZQUIERDA — INFO + MAPA ────────────── */
.ct-info { display: flex; flex-direction: column; gap: 36px; }

.ct-info__block {
  background: #fff;
  border: 1px solid rgba(14,71,36,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ct-info__block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--dorado);
  transition: height 0.5s ease;
  border-radius: 0 0 3px 3px;
}
.ct-info__block:hover {
  box-shadow: 0 20px 60px rgba(14,71,36,0.1);
  transform: translateY(-4px);
  border-color: rgba(14,71,36,0.13);
}
.ct-info__block:hover::before { height: 100%; }

.ct-info__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct-info__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(14,71,36,0.08);
}
.ct-info__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--verde-oscuro);
  margin-bottom: 10px;
  line-height: 1.2;
}
.ct-info__body {
  font-size: 0.9rem;
  color: var(--texto-claro);
  line-height: 1.75;
  margin-bottom: 18px;
}
.ct-info__body a {
  color: var(--verde);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ct-info__body a:hover { color: var(--dorado); }
.ct-info__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--texto);
  padding: 8px 0;
  border-bottom: 1px solid rgba(14,71,36,0.05);
}
.ct-info__detail:last-of-type { border-bottom: none; }
.ct-info__detail-icon {
  width: 28px; height: 28px;
  background: rgba(14,71,36,0.06);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--verde);
  flex-shrink: 0;
}
.ct-info__detail strong {
  font-weight: 600;
  color: var(--texto);
  display: block;
  font-size: 0.82rem;
}
.ct-info__detail span {
  font-size: 0.76rem;
  color: var(--texto-claro);
}

/* Horario visual */
.ct-schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.ct-schedule__day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  background: var(--gris-claro);
  border-radius: 10px;
  font-size: 0.78rem;
}
.ct-schedule__day span:first-child {
  font-weight: 600;
  color: var(--texto);
}
.ct-schedule__day span:last-child {
  color: var(--verde);
  font-weight: 600;
  font-size: 0.72rem;
}
.ct-schedule__day--full {
  grid-column: span 2;
  background: rgba(14,71,36,0.05);
}
.ct-schedule__day--closed span:last-child {
  color: var(--texto-claro);
  font-weight: 400;
}

/* Botón CTA pequeño dentro de block */
.ct-info__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--verde);
  text-decoration: none;
  padding: 9px 18px;
  background: rgba(14,71,36,0.07);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  margin-top: 6px;
}
.ct-info__btn:hover {
  background: var(--verde);
  color: var(--crema);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,71,36,0.2);
}
.ct-info__btn--wa {
  background: rgba(37,211,102,0.1);
  color: #1a9e52;
}
.ct-info__btn--wa:hover {
  background: #25d366;
  color: white;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.ct-info__btn--ig {
  background: rgba(225,48,108,0.08);
  color: #e1306c;
}
.ct-info__btn--ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  box-shadow: 0 8px 24px rgba(225,48,108,0.3);
}
.ct-info__social-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* ── MAPA ─────────────────────────────────────── */
.ct-map-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(14,71,36,0.15);
  margin-top: 4px;
}
.ct-map-wrap iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: none;
  filter: saturate(0.9) contrast(1.05);
}
.ct-map-badge {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: var(--verde-oscuro);
  color: var(--crema);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(220,178,80,0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 10;
}
.ct-map-badge:hover {
  background: var(--dorado);
  color: var(--verde-oscuro);
  transform: translateX(-50%) translateY(-3px);
}
.ct-map-badge span {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: map-pulse 2s infinite;
}
@keyframes map-pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.5; transform: scale(0.7); }
}

/* ── COLUMNA DERECHA — FORMAS DE CONTACTO ───────── */
.ct-contact { display: flex; flex-direction: column; gap: 20px; }

.ct-contact__header {
  margin-bottom: 8px;
}
.ct-contact__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--verde);
  background: rgba(14,71,36,0.06);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.ct-contact__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--verde-oscuro);
  line-height: 1.18;
  margin-bottom: 12px;
}
.ct-contact__title em { color: var(--verde); font-style: italic; }
.ct-contact__lead {
  font-size: 0.92rem;
  color: var(--texto-claro);
  line-height: 1.75;
}
.ct-contact__lead strong { color: var(--texto); }

/* Tarjetas de canal de contacto */
.ct-channel {
  background: #fff;
  border: 1.5px solid rgba(14,71,36,0.08);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: all 0.45s cubic-bezier(0.165,0.84,0.44,1);
  position: relative;
  overflow: hidden;
}
.ct-channel::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.ct-channel:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -12px rgba(14,71,36,0.18);
}

/* WhatsApp */
.ct-channel--wa::after {
  background: linear-gradient(135deg, rgba(37,211,102,0.04) 0%, transparent 60%);
}
.ct-channel--wa:hover {
  border-color: rgba(37,211,102,0.4);
  box-shadow: 0 24px 60px -12px rgba(37,211,102,0.15);
}
.ct-channel--wa::after { opacity: 1; }

/* Instagram */
.ct-channel--ig::after {
  background: linear-gradient(135deg, rgba(225,48,108,0.04) 0%, transparent 60%);
}
.ct-channel--ig:hover {
  border-color: rgba(225,48,108,0.3);
  box-shadow: 0 24px 60px -12px rgba(225,48,108,0.12);
}
.ct-channel--ig::after { opacity: 1; }

/* Email */
.ct-channel--email:hover {
  border-color: rgba(14,71,36,0.25);
  box-shadow: 0 24px 60px -12px rgba(14,71,36,0.15);
}

/* Teléfono */
.ct-channel--tel:hover {
  border-color: rgba(220,178,80,0.4);
  box-shadow: 0 24px 60px -12px rgba(220,178,80,0.15);
}

.ct-channel__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.ct-channel:hover .ct-channel__icon { transform: scale(1.1) rotate(-4deg); }
.ct-channel__icon--wa { background: rgba(37,211,102,0.1); color: #25d366; }
.ct-channel__icon--ig {
  background: linear-gradient(135deg, rgba(240,148,51,0.1), rgba(188,24,136,0.1));
  color: #e1306c;
}
.ct-channel__icon--email { background: rgba(14,71,36,0.07); color: var(--verde); }
.ct-channel__icon--tel { background: rgba(220,178,80,0.1); color: var(--dorado-oscuro); }

.ct-channel__body { flex: 1; min-width: 0; }
.ct-channel__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texto-claro);
  margin-bottom: 3px;
}
.ct-channel__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--verde-oscuro);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ct-channel__hint {
  font-size: 0.78rem;
  color: var(--texto-claro);
}
.ct-channel__arrow {
  width: 36px; height: 36px;
  background: rgba(14,71,36,0.05);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--verde);
  flex-shrink: 0;
  transition: all 0.35s ease;
}
.ct-channel:hover .ct-channel__arrow {
  background: var(--verde);
  color: var(--crema);
  transform: translateX(4px);
}
.ct-channel--wa:hover .ct-channel__arrow { background: #25d366; }
.ct-channel--ig:hover .ct-channel__arrow {
  background: linear-gradient(135deg, #f09433, #bc1888);
}
.ct-channel--tel:hover .ct-channel__arrow { background: var(--dorado); color: var(--verde-oscuro); }

/* Disponibilidad badge */
.ct-channel__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #1a9e52;
  background: rgba(37,211,102,0.08);
  padding: 3px 9px;
  border-radius: 20px;
  margin-top: 4px;
}
.ct-channel__badge-dot {
  width: 5px; height: 5px;
  background: #25d366;
  border-radius: 50%;
  animation: badge-blink 2s infinite;
}
@keyframes badge-blink {
  0%,100% { opacity:1; }
  50% { opacity:0.3; }
}

/* ── SECCIÓN CÓMO LLEGAR ───────────────────────── */
.ct-directions {
  padding: 100px 0;
  background: var(--verde-oscuro);
  position: relative;
  overflow: hidden;
}
.ct-directions::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 30%, rgba(220,178,80,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 70%, rgba(220,178,80,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.ct-directions .container { position: relative; z-index: 1; }
.ct-directions__header { text-align: center; max-width: 580px; margin: 0 auto 64px; }
.ct-directions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.ct-dir-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(220,178,80,0.14);
  border-radius: 22px;
  padding: 36px 28px;
  transition: all 0.45s cubic-bezier(0.165,0.84,0.44,1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.ct-dir-card::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,178,80,0.07) 0%, transparent 70%);
  transition: transform 0.5s ease;
  pointer-events: none;
}
.ct-dir-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(220,178,80,0.35);
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
}
.ct-dir-card:hover::after { transform: scale(1.5) translate(-12%, -12%); }

.ct-dir-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dorado);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: -8px;
  transition: opacity 0.3s ease;
}
.ct-dir-card:hover .ct-dir-card__num { opacity: 0.5; }
.ct-dir-card__icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: rgba(220,178,80,0.1);
  border: 1px solid rgba(220,178,80,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--dorado);
  margin-bottom: 18px;
  transition: all 0.4s ease;
}
.ct-dir-card:hover .ct-dir-card__icon {
  background: rgba(220,178,80,0.2);
  transform: scale(1.08);
}
.ct-dir-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--crema);
  margin-bottom: 10px;
}
.ct-dir-card__text {
  font-size: 0.85rem;
  color: rgba(237,232,208,0.52);
  line-height: 1.72;
}
.ct-dir-card__text strong { color: rgba(237,232,208,0.8); }
.ct-dir-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dorado);
  margin-top: 14px;
  transition: gap 0.3s ease;
}
.ct-dir-card:hover .ct-dir-card__link { gap: 10px; }

/* Mapa grande */
.ct-bigmap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
  border: 1px solid rgba(220,178,80,0.15);
}
.ct-bigmap iframe {
  width: 100%;
  height: 460px;
  display: block;
  border: none;
  filter: saturate(0.88) contrast(1.06);
}
.ct-bigmap__bar {
  background: rgba(8,46,23,0.95);
  backdrop-filter: blur(16px);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid rgba(220,178,80,0.15);
}
.ct-bigmap__address {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct-bigmap__address-icon {
  width: 34px; height: 34px;
  background: rgba(220,178,80,0.12);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dorado);
  flex-shrink: 0;
}
.ct-bigmap__address strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--crema);
}
.ct-bigmap__address span {
  font-size: 0.72rem;
  color: rgba(237,232,208,0.45);
}
.ct-bigmap__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ct-bigmap__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ct-bigmap__btn--primary {
  background: var(--dorado);
  color: var(--verde-oscuro);
}
.ct-bigmap__btn--primary:hover {
  background: var(--dorado-claro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220,178,80,0.35);
}
.ct-bigmap__btn--outline {
  background: transparent;
  color: rgba(237,232,208,0.65);
  border: 1px solid rgba(237,232,208,0.18);
}
.ct-bigmap__btn--outline:hover {
  border-color: rgba(237,232,208,0.4);
  color: var(--crema);
}

/* ── PREGUNTAS DE RESERVA ────────────────────────── */
.ct-reserve {
  padding: 100px 0;
  background: var(--gris-claro);
}
.ct-reserve__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ct-reserve__text { position: sticky; top: 130px; }
.ct-reserve__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde);
  background: rgba(14,71,36,0.07);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.ct-reserve__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  font-weight: 700;
  color: var(--verde-oscuro);
  line-height: 1.18;
  margin-bottom: 18px;
}
.ct-reserve__title em { color: var(--verde); font-style: italic; }
.ct-reserve__body {
  font-size: 0.92rem;
  color: var(--texto-claro);
  line-height: 1.8;
  margin-bottom: 30px;
}
.ct-reserve__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ct-reserve__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--texto);
  line-height: 1.6;
}
.ct-reserve__step-num {
  width: 28px; height: 28px;
  background: var(--verde);
  color: var(--crema);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.ct-reserve__step strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--texto);
}
.ct-reserve__step span { color: var(--texto-claro); font-size: 0.82rem; }

/* Plan cards en la reserva */
.ct-plans { display: flex; flex-direction: column; gap: 16px; }
.ct-plan-card {
  background: #fff;
  border: 1.5px solid rgba(14,71,36,0.09);
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
  position: relative;
  overflow: hidden;
}
.ct-plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--verde);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  border-radius: 0 3px 3px 0;
}
.ct-plan-card:hover {
  transform: translateX(8px);
  box-shadow: 0 16px 50px rgba(14,71,36,0.12);
  border-color: rgba(14,71,36,0.18);
}
.ct-plan-card:hover::before { transform: scaleY(1); }
.ct-plan-card--featured {
  background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde) 100%);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(8,46,23,0.3);
}
.ct-plan-card--featured:hover {
  transform: translateX(8px) scale(1.01);
  box-shadow: 0 28px 70px rgba(8,46,23,0.4);
}
.ct-plan-card--featured::before { background: var(--dorado); }

.ct-plan-card__icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: rgba(14,71,36,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--verde);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.ct-plan-card:hover .ct-plan-card__icon { transform: scale(1.1); }
.ct-plan-card--featured .ct-plan-card__icon {
  background: rgba(220,178,80,0.15);
  color: var(--dorado);
}
.ct-plan-card__body { flex: 1; min-width: 0; }
.ct-plan-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--verde-oscuro);
  margin-bottom: 2px;
}
.ct-plan-card--featured .ct-plan-card__name { color: var(--crema); }
.ct-plan-card__detail {
  font-size: 0.76rem;
  color: var(--texto-claro);
  line-height: 1.4;
}
.ct-plan-card--featured .ct-plan-card__detail { color: rgba(237,232,208,0.6); }
.ct-plan-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--verde-oscuro);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}
.ct-plan-card--featured .ct-plan-card__price { color: var(--dorado); }
.ct-plan-card__badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--dorado);
  color: var(--verde-oscuro);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
}

/* ── URGENCIA BANNER ────────────────────────────── */
.ct-urgency {
  padding: 56px 0;
  background: linear-gradient(135deg, #9f99ce 0%, var(--lila) 60%, #cbc7ea 100%);
  position: relative;
  overflow: hidden;
}
.ct-urgency::before {
  content: '74';
  position: absolute;
  right: -30px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  pointer-events: none;
}
.ct-urgency__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ct-urgency__left { flex: 1; min-width: 260px; }
.ct-urgency__kicker {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(8,46,23,0.55);
  background: rgba(8,46,23,0.08);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.ct-urgency__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--verde-oscuro);
  line-height: 1.18;
  margin-bottom: 8px;
}
.ct-urgency__sub {
  font-size: 0.88rem;
  color: rgba(8,46,23,0.6);
  line-height: 1.6;
}
.ct-urgency__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── CTA FINAL ──────────────────────────────────── */
.ct-final {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ct-final__bg {
  position: absolute; inset: 0; z-index: 0;
}
.ct-final__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ct-final__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,46,23,0.96) 0%, rgba(8,46,23,0.91) 100%);
}
.ct-final .container { position: relative; z-index: 1; }
.ct-final__content { max-width: 700px; margin: 0 auto; }
.ct-final__pre {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--dorado);
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}
.ct-final__pre::before,
.ct-final__pre::after {
  content: '';
  display: block;
  width: 44px; height: 1px;
  background: rgba(220,178,80,0.32);
}
.ct-final__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--crema);
  line-height: 1.12;
  margin-bottom: 22px;
}
.ct-final__title em { color: var(--dorado); font-style: italic; }
.ct-final__text {
  font-size: 1rem;
  color: rgba(237,232,208,0.6);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 42px;
}
.ct-final__text strong { color: var(--dorado); }
.ct-final__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 36px;
}
.ct-final__trust {
  display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
}
.ct-final__trust span {
  font-size: 0.72rem;
  color: rgba(237,232,208,0.35);
  display: flex; align-items: center; gap: 6px;
}
.ct-final__trust span::before { content: '✓'; color: var(--dorado); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
  .ct-main__grid { grid-template-columns: 1fr; gap: 50px; }
  .ct-contact { order: -1; }
  .ct-directions__grid { grid-template-columns: 1fr 1fr; }
  .ct-reserve__inner { grid-template-columns: 1fr; }
  .ct-reserve__text { position: static; }
}
@media (max-width: 768px) {
  .ct-hero { min-height: 65vh; }
  .ct-chips__inner { justify-content: flex-start; }
  .ct-directions__grid { grid-template-columns: 1fr; }
  .ct-urgency__inner { flex-direction: column; text-align: center; }
  .ct-urgency__actions { justify-content: center; }
  .ct-bigmap iframe { height: 320px; }
  .ct-bigmap__bar { flex-direction: column; align-items: flex-start; }
  .ct-final__actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .ct-hero__actions { flex-direction: column; }
  .ct-schedule { grid-template-columns: 1fr; }
  .ct-schedule__day--full { grid-column: span 1; }
  .ct-plan-card { flex-wrap: wrap; }
  .ct-plan-card__price { width: 100%; text-align: left; }
}
/* ══════════════════════════════════════════════════
   REGLAS MOVIDAS DESDE <style> INLINE
══════════════════════════════════════════════════ */

/* Barra de scroll */
#ct-scroll-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--verde), var(--dorado));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* WA shake */
@keyframes wa-shake {
  0%,100% { transform: translate(-50%,0) rotate(0deg); }
  20%      { transform: translate(-50%,0) rotate(-12deg); }
  40%      { transform: translate(-50%,0) rotate(12deg); }
  60%      { transform: translate(-50%,0) rotate(-8deg); }
  80%      { transform: translate(-50%,0) rotate(8deg); }
}
.wa-float.wa-shake { animation: wa-shake 0.6s ease; }

/* Sticky mobile CTA */
#ct-sticky {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--verde-oscuro);
  border-top: 1px solid rgba(220,178,80,0.2);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  z-index: 900;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.165,0.84,0.44,1), opacity 0.4s ease;
}
@media (min-width: 769px) { #ct-sticky { display: none; } }
#ct-sticky strong {
  font-size: 0.82rem; color: var(--crema);
  display: block; line-height: 1.3;
}
#ct-sticky span {
  font-size: 0.7rem; color: rgba(237,232,208,0.5);
}

/* ══════════════════════════════════════════════════
   HERO CTA — PRIMER BOTÓN CON FONDO LILA
══════════════════════════════════════════════════ */
.ct-hero__btn--lila {
  background: var(--lila) !important;
  color: var(--verde-oscuro) !important;
  border-color: var(--lila) !important;
}
.ct-hero__btn--lila:hover {
  background: #a8a2d6 !important;
  border-color: #a8a2d6 !important;
  color: var(--verde-oscuro) !important;
}
.ct-hero__btn--lila svg { color: var(--verde-oscuro) !important; }

/* ══════════════════════════════════════════════════
   TÍTULOS SECCIÓN CÓMO LLEGAR — ALINEADOS CON SISTEMA
══════════════════════════════════════════════════ */
.ct-directions__header {
  text-align: center;
  margin-bottom: 48px;
}
.ct-directions__header .section__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
/* Quitar la línea decorativa ::before cuando está centrado */
.ct-directions__header .section__eyebrow::before {
  display: none;
}
.ct-directions__header .section__title {
  margin-bottom: 12px;
}
/* ab-em--lila y ab-title--crema son heredadas del about.css
   pero en caso de que no cargue about.css, redefinimos aquí */
.ab-title--crema { color: var(--crema) !important; }
.ab-em--lila     { color: var(--lila) !important; font-style: italic; }
.ab-subtitle--muted { color: rgba(215,194,163,0.5) !important; }

/* ══════════════════════════════════════════════════
   NAVBAR — RESPONSIVE COMPLETO (patrón unificado)
══════════════════════════════════════════════════ */

/* WA mobile: visible solo en móvil */
.navbar__mobile-wa { display: none; }

@media (max-width: 768px) {
  .navbar__mobile-wa {
    display: flex;
    align-items: center;
  }
  .navbar__wa-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(37,211,102,0.12);
    color: #25d366;
    transition: background 0.3s;
  }
  .navbar__wa-mobile:hover { background: rgba(37,211,102,0.22); }
  /* Ocultar span de Contáctanos en móvil */
  .navbar__contact span { display: none; }
  /* Menú desplegable */
  .navbar__nav {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(15,32,25,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 0 2rem;
    border-bottom: 1px solid rgba(220,178,80,0.2);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.165,0.84,0.44,1), opacity 0.4s ease;
    pointer-events: none;
    z-index: 999;
  }
  .navbar__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .navbar__nav li { width: 100%; text-align: center; }
  .navbar__nav a  { display: block; padding: 1rem 2rem; font-size: 0.9rem; }
  .navbar__toggle { display: flex; }
  /* Hero padding-top reducido en móvil */
  .ct-hero { padding-top: 70px; }
}

/* ── REDES SOCIALES — botones info ───────────────── */
.ct-info__btn--fb {
  background: rgba(66,103,178,0.1);
  border-color: rgba(66,103,178,0.25);
  color: #4267b2;
}
.ct-info__btn--fb:hover {
  background: rgba(66,103,178,0.18);
  border-color: rgba(66,103,178,0.45);
}
.ct-info__btn--tt {
  background: #000000;
  border-color: rgba(0,0,0,0.6);
  color: #ffffff;
}
.ct-info__btn--tt:hover {
  background: #111111;
  border-color: rgba(0,0,0,0.8);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

/* ── CANAL Facebook ──────────────────────────────── */
.ct-channel--fb {
  background: rgba(66,103,178,0.04);
  border-color: rgba(66,103,178,0.15);
}
.ct-channel--fb:hover {
  border-color: rgba(66,103,178,0.35);
  box-shadow: 0 10px 30px rgba(66,103,178,0.12);
}
.ct-channel__icon--fb {
  background: rgba(66,103,178,0.12);
  color: #4267b2;
}

/* ── CANAL TikTok ────────────────────────────────── */
.ct-channel--tt {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.15);
}
.ct-channel--tt:hover {
  border-color: rgba(0,0,0,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.ct-channel__icon--tt {
  background: #000000;
  color: #ffffff;
}

/* ── CANAL evento dorado ─────────────────────────── */
.ct-channel--event {
  background: linear-gradient(135deg,rgba(220,178,80,0.05),rgba(220,178,80,0.02));
  border-color: rgba(220,178,80,0.2);
}
.ct-channel__icon--event {
  background: rgba(220,178,80,0.1);
  color: var(--dorado-oscuro);
}
.ct-channel__name--dorado { color: var(--dorado-oscuro); }
.ct-channel__arrow--dorado {
  background: rgba(220,178,80,0.1);
  color: var(--dorado-oscuro);
}

/* ── PLAN CARD Party Plan ────────────────────────── */
.ct-plan-card--party {
  border-color: rgba(186,180,224,0.3);
  background: rgba(186,180,224,0.04);
}
.ct-plan-card--party:hover {
  border-color: rgba(186,180,224,0.5);
  box-shadow: 0 10px 30px rgba(186,180,224,0.12);
}
.ct-plan-card__icon--lila {
  background: rgba(186,180,224,0.15);
  color: var(--lila);
}
.ct-plan-card__name--lila { color: #7b74c4; }
.ct-plan-card__price--lila { color: var(--lila); font-size: 1rem; }

/* ── INLINE STYLES ELIMINADOS → clases ──────────── */
.ct-em--lila { color: var(--lila); }
.ct-slots { font-style: italic; }
.ct-open-status {
  color: #4ade80;
  transition: color 0.3s;
}
.ct-plans__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texto-claro);
  margin-bottom: 6px;
}
.ct-trust-block {
  background: #fff;
  border: 1px solid rgba(14,71,36,0.07);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ct-trust-block__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texto-claro);
}
.ct-trust-block__item {
  font-size: 0.82rem;
  color: var(--texto);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct-trust-block__check {
  color: var(--verde);
  font-size: 0.7rem;
  font-weight: 700;
}
.ct-reserve__cta { margin-top: 28px; }
.ct-urgency__alt-btn {
  background: rgba(8,46,23,0.12);
  color: var(--verde-oscuro);
  font-weight: 600;
}

/* ── STICKY CTA ──────────────────────────────────── */
#ct-sticky {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.165,0.84,0.44,1), opacity 0.4s ease;
}
#ct-sticky .btn--primary {
  padding: 11px 20px;
  font-size: 0.8rem;
  white-space: nowrap;
}
/* Sticky CTA visible state */
#ct-sticky.ct-sticky--visible {
  transform: translateY(0);
  opacity: 1;
}
/* Slots blink dim state */
.ct-slots--dim { opacity: 0.5; transition: opacity 0.4s ease; }

/* ── BTN LILA — CTA final ────────────────────────── */
.btn--lila {
  background: var(--lila);
  color: #1a0a2e;
}
.btn--lila:hover {
  background: #c9b3e0;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(186,180,224,0.4);
}