﻿/* ============================================================
   ESTILOS EXCLUSIVOS - RESERVA CONGRESO EXPERIENCIA LED
   Tema: Blanco Puro / Elegante Hotel Saska Palette
   - Gold Base: #b8962e
   - Gold Light: #d4af5a
   - Brown: #8b6a3a
   - Dark: #1a1a1a
   - Dark 2: #2a2a2a
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --gold: #b8962e;
  --gold-light: #d4af5a;
  --brown: #8b6a3a;
  --dark: #1a1a1a;
  --dark2: #2a2a2a;

  /* Asignación de Paleta Oficial Saska Hotel */
  --led-purple: #b8962e;
  --led-purple-dark: #8b6a3a;
  --led-purple-light: #d4af5a;
  --led-purple-soft: #fbf7ee;
  --led-cyan: #8b6a3a;
  --led-cyan-light: #d4af5a;
  --led-cyan-soft: #fcf8f0;
  --led-amber: #b8962e;
  --led-amber-dark: #8b6a3a;
  --led-amber-soft: #fffbeb;
  --bg-white: #ffffff;
  --bg-light: #faf8f5;
  --bg-card: #ffffff;
  --border-light: #e5e0d8;
  --border-focus: #b8962e;
  --text-dark: #1a1a1a;
  --text-body: #333333;
  --text-muted: #666666;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(184, 150, 46, 0.12);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

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

body.page-congreso-led {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- HEADER DE MARCA (LOGO SASKA PRIMERO & EXPERIENCIA LED A LA DERECHA) --- */
.led-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.8rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.led-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.led-header__brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.saska-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.led-header__divider {
  width: 1.5px;
  height: 34px;
  background: var(--border-light);
}

.led-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.led-header__cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.led-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--led-amber-soft);
  border: 1px solid var(--gold-light);
  color: var(--brown);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  animation: pulse-amber 2.5s infinite ease-in-out;
}

.led-header__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.led-header__wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* --- FLOATING TOOLTIP DE TRASLADO GRATIS --- */
.led-transfer-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: auto;
  z-index: 999;
  max-width: 360px;
  background: #ffffff;
  border: 2px solid var(--gold);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 12px 35px rgba(184, 150, 46, 0.2), 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.led-transfer-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Onda expansiva Ripple Dorado/Brown (Solo activa en móvil) */
.led-transfer-banner__ripple {
  display: none;
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid var(--gold);
  animation: transfer-ripple 2s infinite ease-out;
  pointer-events: none;
}

/* Nube de comentario ¡Gratis! (Visible en desktop y móvil) */
.led-transfer-badge-gratis {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(184, 150, 46, 0.4);
  white-space: nowrap;
  z-index: 10;
  animation: bounce-slow 2.5s infinite ease-in-out;
}

.led-transfer-banner__icon {
  font-size: 1.5rem;
  color: var(--gold);
  background: var(--led-cyan-soft);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: bounce-slow 2s infinite ease-in-out;
}

.led-transfer-banner__content {
  flex-grow: 1;
}

.led-transfer-banner__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0;
}

.led-transfer-banner__text {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.4;
}

.led-transfer-banner__close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.2s;
}

.led-transfer-banner__close:hover {
  color: var(--text-dark);
}

/* --- FLOATING ANIMATED WHATSAPP WIDGET (LADO DERECHO) --- */
.led-wa-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: auto;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.led-wa-widget.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.led-wa-widget__link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.led-wa-widget__tooltip {
  background: #ffffff;
  border: 2px solid #25d366;
  border-radius: 18px;
  padding: 0.75rem 1.1rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: wa-bounce 3s infinite ease-in-out;
}

.led-wa-widget__badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: #25d366;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0;
}

.led-wa-widget__text {
  font-size: 0.83rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.led-wa-widget__btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}

.led-wa-widget__btn:hover {
  transform: scale(1.12) rotate(5deg);
}

.led-wa-widget__ripple {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-ripple 2s infinite ease-out;
}

/* --- HERO BANNER SECTION (CON TONOS GOLD Y BROWN DE SASKA HOTEL) --- */
.led-hero {
  position: relative;
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.led-hero__date-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--led-purple-soft);
  border: 1px solid var(--gold-light);
  color: var(--brown);
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.led-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.led-hero__title span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.led-hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--brown);
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}

/* --- BLOQUE DE HOTELES OFICIALES (HERO NETWORK) --- */
.led-hotels-network {
  max-width: 940px;
  margin: 2rem auto 2.2rem;
  background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
  border: 1.5px solid var(--border-light);
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
}

.led-hotels-network__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.led-hotels-network__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.led-hotels-network__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.led-hotel-card {
  position: relative;
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: 18px;
  padding: 1.4rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.led-hotel-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.led-hotel-card.is-active {
  border-color: var(--gold);
  background: #fdfbf7;
  box-shadow: 0 8px 24px rgba(184, 150, 46, 0.18);
}

.led-hotel-card__badge {
  position: absolute;
  top: -12px;
  background: #f1f5f9;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.led-hotel-card__badge.led-badge-saska {
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 3px 8px rgba(184, 150, 46, 0.3);
}

.led-hotel-card__logo {
  height: 50px;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.06));
}

.led-hotel-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
}

.led-hotel-card__discount {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brown);
}

.led-hotel-card__link-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.led-hotel-card__address {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border-light);
  width: 100%;
  text-align: center;
  line-height: 1.35;
  font-weight: 500;
}

.led-hotel-card__address i {
  color: var(--gold);
  margin-right: 0.2rem;
}

/* --- GOOGLE MAP EMBED WRAPPER EN HERO --- */
.led-hero-map-wrap {
  max-width: 940px;
  margin: 2rem auto 0;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.led-hero-map__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.led-hero-map__container {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.led-hero-map__address {
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 600;
  margin-top: 0.9rem;
}

.led-hero-map__address i {
  color: var(--gold);
}

/* --- EVENT INFO SECTION --- */
.led-section {
  max-width: 1240px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.led-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.led-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.led-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.led-info-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 16px rgba(184, 150, 46, 0.25);
}

.led-info-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.led-info-card__text {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.6;
}

.led-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.led-section-subtitle {
  text-align: center;
  color: var(--brown);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 2.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* --- ROOM RATES IN A SINGLE ROW OF 4 CARDS & LOGO DE SASKA TAMAÑO 150PX --- */
.led-rooms-container {
  margin-bottom: 4rem;
}

.led-discount-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  color: #ffffff;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 18px rgba(184, 150, 46, 0.35);
  animation: pulse-glow 2s infinite ease-in-out;
}

.led-rooms-logo-wrap {
  margin: 1.5rem 0 1.2rem;
  display: flex;
  justify-content: center;
}

.led-rooms-saska-logo {
  height: 150px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease;
}

.led-rooms-saska-logo:hover {
  transform: scale(1.04);
}

.led-room-rates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.led-room-rate-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.led-room-rate-card:hover,
.led-room-rate-card.is-selected {
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(184, 150, 46, 0.18);
  transform: translateY(-5px);
}

.led-room-rate-card.is-selected {
  background: #fdfbf7;
}

.led-room-rate-card__img-wrap {
  position: relative;
  width: 100%;
  height: 175px;
  overflow: hidden;
  background: #e2e8f0;
}

.led-room-rate-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.led-room-rate-card:hover .led-room-rate-card__img {
  transform: scale(1.06);
}

/* Insignias animadas de descuento con paleta Dorada/Marrón */
.led-discount-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(184, 150, 46, 0.4);
  letter-spacing: 0.5px;
}

.led-gallery-btn {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(26, 26, 26, 0.85);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background 0.2s, transform 0.2s;
  z-index: 3;
}

.led-gallery-btn:hover {
  background: var(--gold);
  transform: scale(1.08);
}

.led-room-rate-card__radio {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  accent-color: var(--gold);
  width: 22px;
  height: 22px;
  cursor: pointer;
  z-index: 2;
}

.led-room-rate-card__body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.led-room-rate-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

/* Lista de características con icono por cada ítem */
.led-room-features-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.led-room-features-list li {
  font-size: 0.81rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
}

.led-room-features-list li i {
  color: var(--gold);
  font-size: 0.82rem;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.led-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-light);
}

.led-price-old {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.led-price-new {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brown);
}

.led-price-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* --- FORMULARIO DE RESERVA (FLATPICKR ESTILIZADO) --- */
.led-form-section {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 3.5rem 2.8rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 4rem;
}

.led-form-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.led-form-header__title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.led-form-header__desc {
  color: var(--text-body);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.led-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.led-field-full {
  grid-column: 1 / -1;
}

.led-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
}

.led-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.led-field label i {
  color: var(--gold);
}

.led-field input[type="text"],
.led-field input[type="email"],
.led-field input[type="tel"],
.led-field input[type="date"],
.led-field select,
.led-field textarea,
.flatpickr-input {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: #faf8f5 !important;
  border: 1.5px solid var(--border-light) !important;
  border-radius: 14px !important;
  color: var(--text-dark) !important;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.led-field input:focus,
.led-field select:focus,
.led-field textarea:focus,
.flatpickr-input.active {
  outline: none;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(184, 150, 46, 0.12) !important;
  background: #ffffff !important;
}

/* DUAL SELECTOR HORA Y MINUTOS */
.led-time-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Stepper counter */
.led-stepper {
  display: flex;
  align-items: center;
  background: #faf8f5;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
}

.led-stepper__btn {
  background: var(--led-purple-soft);
  border: none;
  color: var(--brown);
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.led-stepper__btn:hover {
  background: var(--gold);
  color: #fff;
}

.led-stepper input {
  border: none !important;
  text-align: center;
  font-weight: 800;
  font-size: 1.15rem !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* SUBMIT BUTTON */
.led-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  border: none;
  border-radius: 16px;
  padding: 1.25rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(184, 150, 46, 0.3);
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.led-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(184, 150, 46, 0.45);
}

.led-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* FOOTER BRANDING DESTACADO CON LOGO SASKA PRIMERO */
.led-footer {
  text-align: center;
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-body);
  font-size: 0.92rem;
  background: linear-gradient(180deg, #faf8f5 0%, #f5f0e6 100%);
}

.led-footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.led-footer-logo-saska {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.led-footer-divider {
  width: 1.5px;
  height: 40px;
  background: var(--border-light);
}

.led-footer-logo-led {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.led-footer p {
  margin-bottom: 0.5rem;
}

.led-footer strong {
  color: var(--brown);
}

/* MODAL PHOTO GALLERY SLIDER */
.led-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.led-gallery-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.led-gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(8px);
}

.led-gallery-modal__card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 24px;
  max-width: 850px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.led-gallery-modal.is-active .led-gallery-modal__card {
  transform: scale(1);
}

.led-gallery-modal__head {
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.led-gallery-modal__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.led-gallery-modal__close {
  background: #faf8f5;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.led-gallery-modal__close:hover {
  background: #e5e0d8;
}

/* Slider viewport */
.led-slider-viewport {
  position: relative;
  width: 100%;
  height: 440px;
  background: #1a1a1a;
}

.led-slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.led-slider-slide.is-active {
  opacity: 1;
}

.led-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.led-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.2s;
}

.led-slider-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.led-slider-btn--prev { left: 1rem; }
.led-slider-btn--next { right: 1rem; }

.led-slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.led-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.led-slider-dot.is-active {
  background: #ffffff;
  transform: scale(1.3);
}

/* MODAL SUCCESS POPUP & TRANSFER POPUP */
.led-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.led-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.led-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.75);
  backdrop-filter: blur(6px);
}

.led-modal__card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.led-modal.is-active .led-modal__card {
  transform: scale(1);
}

.led-modal__icon {
  font-size: 3.5rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.led-modal__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.led-modal__text {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.led-modal__btn {
  background: var(--gold);
  color: #ffffff;
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.led-modal__btn:hover {
  background: var(--brown);
}

/* FLATPICKR CUSTOM STYLING */
.flatpickr-calendar {
  border-radius: 18px !important;
  box-shadow: 0 15px 35px rgba(184, 150, 46, 0.18) !important;
  border: 1px solid var(--border-light) !important;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* ANIMATIONS */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 18px rgba(184, 150, 46, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(184, 150, 46, 0.75); }
}

@keyframes pulse-amber {
  0%, 100% { border-color: var(--gold); opacity: 0.9; }
  50% { border-color: var(--brown); opacity: 1; }
}

@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes wa-ripple {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes transfer-ripple {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* RESPONSIVE OPTIMIZADO PARA MÓVILES Y PANTALLAS PEQUEÑAS */
@media (max-width: 1024px) {
  .led-room-rates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .led-header {
    padding: 0.6rem 1rem;
  }
  .led-header__brand {
    gap: 0.6rem;
  }
  .saska-logo-img {
    height: 38px;
  }
  .led-header__divider {
    height: 26px;
  }
  .led-logo-img {
    height: 32px;
  }
  .led-header__badge {
    display: none;
  }

  /* Red de hoteles en móvil */
  .led-hotels-network__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* Ocultar texto largo de tooltip WhatsApp en móvil, dejando sólo el botón flotante circular */
  .led-wa-widget__tooltip {
    display: none;
  }
  .led-wa-widget {
    bottom: 1rem;
    right: 1rem;
  }
  .led-wa-widget__btn {
    width: 52px;
    height: 52px;
    font-size: 1.8rem;
  }

  /* Tooltip de traslado en Móvil: Botón Circular Flotante Neumórfico con Icono que abre Popup Modal */
  .led-transfer-banner {
    bottom: 1rem;
    left: 1rem;
    right: auto;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    border: 2.5px solid var(--gold);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(184, 150, 46, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  /* Activar Onda Ripple Dorada EXCLUSIVAMENTE EN MÓVIL */
  .led-transfer-banner__ripple {
    display: block !important;
  }

  .led-transfer-badge-gratis {
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.63rem;
    padding: 0.12rem 0.45rem;
  }

  .led-transfer-banner__icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    font-size: 1.3rem;
    background: transparent;
    animation: none;
    box-shadow: none;
  }

  /* En móvil, ocultar texto dentro de la barra flotante (se despliega en modal al hacer clic) */
  .led-transfer-banner__content,
  .led-transfer-banner__close {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .led-rooms-saska-logo { height: 90px; }
  .led-room-rates-grid { grid-template-columns: 1fr; }
  .led-form-grid { grid-template-columns: 1fr; }
  .led-form-section { padding: 1.8rem 1rem; }
  .led-slider-viewport { height: 260px; }
  .led-footer__logos { gap: 1rem; }
  .led-footer-logo-saska { height: 42px; }
  .led-footer-logo-led { height: 34px; }
}
/* AÑADIR ESTILOS DE ESTRELLITAS PARA TARJETAS DE HOTELES RECOMENDADOS */
.led-hotel-card__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: #f59e0b;
  font-size: 0.78rem;
  margin: 0 0 0.35rem;
}

