/* ===== Tokens ===== */
:root {
  --cream: #f4ecdd;
  --ink: #2a2233;
  --head: #3a2a4d;
  --muted: #6e6178;
  --amber: #f0b24a;
  --terra: #c8633f;
  --night: #1d1832;
  --night-deep: #15102a;
  --night-2: #2c2350;
  --slate: #2e2747;
  --panel: #241d44;
  --blue: #3f6f8c;
  --green: #5c7a4a;
  --moon-muted: #cabfd6;
  --moon-muted2: #9990ad;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Mulish', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --wrap: 1120px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--ink); background: var(--cream); overflow-x: hidden; }
a { color: inherit; }
::selection { background: var(--amber); color: var(--night); }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ===== Animations ===== */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== Starfield (build-time) ===== */
.stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.stars__dot { position: absolute; top: 0; left: 0; width: 1px; height: 1px; border-radius: 50%; background: #fff; }

/* ===== Header ===== */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(29,24,50,0.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(240,178,74,0.18); }
.site-header__inner { max-width: var(--wrap); margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--cream); font-family: var(--font-display); font-weight: 700; font-size: 16px; white-space: nowrap; }
.brand__star { color: var(--amber); }
.nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.nav__link { text-decoration: none; color: var(--moon-muted); font-size: 13px; font-weight: 600; padding: 6px 9px; border-radius: 20px; }
.nav__link:hover { color: var(--cream); }
.nav__cta { color: var(--night); background: var(--amber); font-family: var(--font-display); font-weight: 700; padding: 8px 16px; border-radius: 30px; }
.nav__cta:hover { color: var(--night); filter: brightness(1.05); }

/* ===== Language switcher (no-JS <details>) ===== */
.langswitch { position: relative; }
.langswitch__btn { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: var(--cream); font-size: 13px; font-weight: 700; padding: 7px 11px; border-radius: 20px; cursor: pointer; list-style: none; }
.langswitch__btn::-webkit-details-marker { display: none; }
.langswitch__flag { font-size: 15px; line-height: 1; }
.langswitch__caret { font-size: 8px; opacity: .6; }
.langswitch__menu { position: absolute; top: calc(100% + 8px); right: 0; background: var(--panel); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 6px; min-width: 158px; box-shadow: 0 14px 34px rgba(0,0,0,0.4); z-index: 100; display: flex; flex-direction: column; gap: 2px; }
.langswitch__item { display: flex; align-items: center; gap: 10px; color: var(--cream); text-decoration: none; font-size: 14px; font-weight: 600; padding: 9px 12px; border-radius: 10px; }
.langswitch__item:hover { background: rgba(255,255,255,0.08); }

/* ===== Eyebrow / shared bits ===== */
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow--amber { color: var(--amber); }
.eyebrow--brown { color: #b07a3e; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; border-radius: 40px; font-family: var(--font-display); font-weight: 700; cursor: pointer; border: none; }
.btn--primary { background: var(--amber); color: var(--night); font-size: 17px; padding: 17px 30px; }
.btn--ghost { color: var(--cream); font-weight: 600; font-size: 15px; padding: 15px 18px; border: 1px solid rgba(244,236,221,0.3); }

/* ===== Hero (dark, curved bottom) ===== */
.hero { position: relative; color: var(--cream); overflow: hidden; }
.hero--home { background: radial-gradient(120% 90% at 70% 10%, var(--night-2) 0%, var(--night) 55%, var(--night-deep) 100%); }
.hero--page { background: radial-gradient(120% 90% at 75% 5%, var(--night-2) 0%, var(--night) 60%, var(--night-deep) 100%); }
.hero__inner { position: relative; z-index: 3; max-width: var(--wrap); margin: 0 auto; padding: clamp(48px,9vw,110px) 24px clamp(72px,11vw,130px); }
.hero__inner--page { padding: clamp(46px,8vw,90px) 24px clamp(60px,9vw,100px); }
.hero__moon { position: absolute; top: 48px; right: -30px; width: 170px; height: 170px; border-radius: 50%; background: radial-gradient(circle at 36% 34%, #fbf1d8, #e8c87a 55%, #c89a52 78%, #9a7438 100%); box-shadow: 0 0 60px rgba(240,178,74,0.35); animation: floaty 9s ease-in-out infinite; z-index: 1; }
.hero__curve { position: absolute; left: 0; right: 0; bottom: -1px; height: 46px; background: var(--cream); border-radius: 50% 50% 0 0 / 100% 100% 0 0; z-index: 2; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--night); background: var(--amber); padding: 7px 14px; border-radius: 30px; }
.hero__title { font-family: var(--font-display); font-weight: 800; line-height: 0.98; letter-spacing: -0.02em; margin: 22px 0; }
.hero__title--home { font-size: clamp(42px,9vw,84px); max-width: 13ch; }
.hero__title--page { font-size: clamp(38px,7vw,68px); line-height: 1.0; max-width: 16ch; }
.hero__lead { font-size: clamp(16px,2.4vw,20px); line-height: 1.6; color: #d4cbe0; max-width: 46ch; margin: 0 0 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { font-family: var(--font-mono); font-size: 12px; color: #8f88a6; margin-top: 26px; letter-spacing: .05em; }

/* ===== Generic section ===== */
.section { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section--pad { padding-top: clamp(50px,8vw,90px); padding-bottom: clamp(50px,8vw,90px); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,5vw,42px); margin: 0; color: var(--head); letter-spacing: -0.01em; }
.h2--light { color: var(--cream); }
.lead { font-size: 16px; line-height: 1.6; color: var(--muted); }

/* ===== Intro statement ===== */
.intro { max-width: 880px; margin: 0 auto; padding: clamp(50px,8vw,90px) 24px clamp(30px,5vw,50px); text-align: center; }
.intro__text { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px,4vw,34px); line-height: 1.32; margin: 18px 0 0; color: var(--head); text-wrap: balance; }
.copao { color: var(--terra); }

/* ===== Card grids ===== */
.grid { display: grid; gap: 16px; }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.card { background: #fff; border-radius: 20px; padding: 26px; box-shadow: 0 6px 24px rgba(58,42,77,0.06); position: relative; overflow: hidden; }
.card__num { position: absolute; top: 14px; right: 18px; font-family: var(--font-mono); font-size: 13px; color: #e3d8c2; }
.card__icon { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.card__icon--purple { background: var(--slate); color: var(--amber); }
.card__icon--terra { background: var(--terra); color: #fff; }
.card__icon--blue { background: var(--blue); color: #fff; }
.card__icon--green { background: var(--green); color: #fff; }
.card__title { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 0 0 8px; color: var(--head); }
.card__text { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ===== Stats strip ===== */
.stats { background: var(--slate); color: var(--cream); border-radius: 24px; padding: clamp(26px,4vw,40px) clamp(20px,4vw,40px); display: grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap: 24px; text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px,5vw,46px); color: var(--amber); line-height: 1; }
.stat__label { font-size: 13px; color: var(--moon-muted); margin-top: 6px; }

/* ===== Dark section (telescopes) ===== */
.dark { position: relative; background: var(--night); color: var(--cream); overflow: hidden; }
.dark__inner { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; padding: clamp(50px,8vw,90px) 24px; }
.glass { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 20px; padding: 26px; }
.glass__kind { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; margin-bottom: 14px; }
.glass__title { font-family: var(--font-display); font-weight: 700; font-size: 21px; margin: 0 0 10px; }
.glass__text { font-size: 14px; line-height: 1.6; color: #b0a8c4; margin: 0; }
.k-purple { color: #9b86d6; } .k-blue { color: #7fb4d6; } .k-amber { color: #e8c87a; }

/* ===== Guides ===== */
.guide { background: #fff; border-radius: 22px; overflow: hidden; box-shadow: 0 6px 24px rgba(58,42,77,0.07); display: flex; flex-direction: column; }
.guide__body { padding: 24px; }
.guide__name { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0 0 4px; color: var(--head); }
.guide__tag { font-family: var(--font-mono); font-size: 12px; color: var(--terra); letter-spacing: .04em; margin-bottom: 14px; }
.guide__text { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ===== Image placeholder (replaces <image-slot>) ===== */
.imgslot { width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg,#efe6d6,#e6dcc8); color: #b3a892; }
.imgslot__icon { font-size: 26px; color: #cbb98f; }
.imgslot__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; }

/* ===== Colored feature cards ===== */
.feature { border-radius: 24px; padding: clamp(28px,4vw,40px); position: relative; overflow: hidden; }
.feature--terra { background: var(--terra); color: #fff5ec; }
.feature--green { background: var(--green); color: #f3f7ec; }
.feature__emoji { font-size: 34px; margin-bottom: 16px; }
.feature__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px,4vw,32px); margin: 0 0 12px; line-height: 1.1; }
.feature__text { font-size: 15px; line-height: 1.65; margin: 0 0 20px; }
.feature--terra .feature__text { color: #ffe6d4; }
.feature--green .feature__text { color: #e3ecd6; }
.feature .imgslot { border-radius: 16px; }

/* ===== CTA band ===== */
.cta { position: relative; color: var(--cream); overflow: hidden; background: radial-gradient(120% 100% at 30% 0%, var(--night-2) 0%, var(--night) 60%, var(--night-deep) 100%); }
.cta__inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; padding: clamp(56px,9vw,110px) 24px; text-align: center; }
.cta__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px,7vw,60px); line-height: 1.02; margin: 0 0 22px; letter-spacing: -0.02em; text-wrap: balance; }
.cta__text { font-size: clamp(16px,2.4vw,19px); color: #d4cbe0; line-height: 1.6; margin: 0 auto 32px; max-width: 42ch; }
.cta .btn--primary { font-size: 18px; padding: 18px 38px; }

/* ===== Timeline (experiencia) ===== */
.timeline { display: flex; flex-direction: column; }
.tl-row { display: flex; gap: 20px; }
.tl-rail { display: flex; flex-direction: column; align-items: center; flex: none; }
.tl-dot { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 14px; z-index: 2; color: #fff; }
.tl-dot--purple { background: var(--slate); color: var(--amber); }
.tl-dot--terra { background: var(--terra); }
.tl-dot--blue { background: var(--blue); }
.tl-dot--green { background: var(--green); }
.tl-line { width: 2px; flex: 1; background: #d8c8ad; min-height: 30px; }
.tl-body { padding-bottom: 32px; }
.tl-body--last { padding-bottom: 0; }
.tl-title { font-family: var(--font-display); font-weight: 700; font-size: 21px; margin: 6px 0 8px; color: var(--head); }
.tl-text { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ===== Lists / tour data ===== */
.list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.list li { display: flex; gap: 10px; font-size: 14px; color: #5d5268; line-height: 1.5; }
.tick { color: var(--green); font-weight: 700; }
.dot { color: var(--terra); }
.card--dark { background: var(--slate); color: var(--cream); }
.card--dark .card__title { color: var(--cream); }
.datarows { display: flex; flex-direction: column; gap: 14px; font-family: var(--font-mono); font-size: 13px; }
.datarow { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.datarow:last-child { border-bottom: none; padding-bottom: 0; }
.datarow span:first-child { color: var(--moon-muted2); }

/* ===== Spec rows ===== */
.spec { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; align-items: start; }
.spec__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-family: var(--font-mono); font-size: 12px; }
.spec__cell { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 10px; }
.spec__cell-k { color: #8f88a6; font-size: 10px; }

/* ===== Coming-soon placeholder ===== */
.soon { background: #fff; border-radius: 24px; box-shadow: 0 6px 24px rgba(58,42,77,0.07); padding: clamp(40px,7vw,72px) 24px; text-align: center; }
.soon--dark { background: linear-gradient(165deg, var(--panel), #1a1535); color: var(--cream); border: 1px solid rgba(255,255,255,0.09); box-shadow: none; }
.soon__badge { display: inline-block; font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); border: 1px solid rgba(240,178,74,0.4); border-radius: 999px; padding: 6px 16px; margin-bottom: 22px; }
.soon__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px,4vw,34px); margin: 0 0 14px; }
.soon--dark .soon__title { color: var(--cream); }
.soon__text { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 48ch; margin: 0 auto 26px; }
.soon--dark .soon__text { color: var(--moon-muted); }

/* ===== Cielo live dashboard ===== */
.cielo-updated {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; color: #8f88a6;
  background: rgba(255,255,255,0.05); padding: 6px 12px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08); margin-top: 14px;
}
.cielo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px; margin-top: 36px;
}
.cielo-card {
  background: linear-gradient(165deg, var(--panel), #1a1535);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 24px; padding: 30px;
}
.cielo-card--moon { display: flex; flex-direction: column; align-items: center; text-align: center; }
.cielo-card__eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; margin-bottom: 22px;
}
.cielo-card__eyebrow--moon { color: #9b86d6; align-self: flex-start; }
.cielo-card__eyebrow--weather { color: #7fb4d6; }
.cielo-card__phase { font-family: var(--font-display); font-weight: 700; font-size: 26px; margin: 0 0 6px; }
.cielo-card__illum { font-size: 15px; color: var(--moon-muted); }
.cielo-moon { display: block; margin-bottom: 22px; }
.cielo-stats { margin-top: 20px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; }
.cielo-stat { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 12px; }
.cielo-stat__k { color: #8f88a6; font-size: 10px; margin-bottom: 3px; }
.cielo-weather-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.cielo-weather-head__icon { font-size: 48px; line-height: 1; }
.cielo-weather-head__temp { font-family: var(--font-display); font-weight: 700; font-size: 30px; }
.cielo-weather-head__sky { font-size: 14px; color: var(--moon-muted); }
.cielo-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; }
.cielo-metric { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 12px; }
.cielo-metric__k { color: #8f88a6; font-size: 10px; margin-bottom: 3px; }
.cielo-rating {
  margin-top: 18px; display: flex; align-items: center; gap: 10px;
  background: rgba(92,122,74,0.2); border: 1px solid rgba(124,168,99,0.3);
  border-radius: 12px; padding: 12px 14px; font-size: 13px; color: #d6e3c8;
}
.cielo-forecast { margin-top: 44px; }
.cielo-forecast__head { display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.cielo-forecast__title { font-family: var(--font-display); font-weight: 800;
  font-size: clamp(24px,4vw,34px); margin: 0; letter-spacing: -0.01em; }
.cielo-forecast__tag { font-family: var(--font-mono); font-size: 11px; color: #8f88a6; letter-spacing: .08em; }
.cielo-forecast__sub { font-size: 14px; color: #9990ad; margin: 0 0 22px; max-width: 60ch; }
.cielo-forecast__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px;
}
.cielo-night {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 14px;
}
.cielo-night--dark {
  background: rgba(240,178,74,0.08); border-color: rgba(240,178,74,0.3);
}
.cielo-night__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.cielo-night__dow { font-family: var(--font-mono); font-size: 11px; color: #9990ad; text-transform: uppercase; }
.cielo-night__date { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--cream); }
.cielo-night__moon { display: flex; justify-content: center; margin: 6px 0 10px; }
.cielo-night__phase { text-align: center; font-size: 12px; color: var(--moon-muted); margin-bottom: 2px; }
.cielo-night__meta { text-align: center; font-family: var(--font-mono); font-size: 11px; color: #8f88a6; margin-bottom: 10px; }
.cielo-night__badge {
  text-align: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
  color: var(--night); background: var(--amber); border-radius: 20px; padding: 4px 0; font-weight: 600;
}
.cielo-night__spacer { text-align: center; font-size: 10px; padding: 4px 0; }
.cielo-cta {
  margin-top: 44px; background: linear-gradient(135deg, #2c2350, var(--night));
  border: 1px solid rgba(240,178,74,0.25); border-radius: 24px;
  padding: clamp(28px,5vw,44px); display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; align-items: center;
}
.cielo-cta__eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; color: var(--amber); margin-bottom: 12px; }
.cielo-cta__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px,4vw,32px); margin: 0 0 10px; line-height: 1.1; }
.cielo-cta__text { font-size: 15px; color: var(--moon-muted); line-height: 1.6; margin: 0; }
.cielo-cta__action { text-align: center; }
.cielo-disclaimer {
  margin-top: 28px; font-family: var(--font-mono); font-size: 11px; color: #6d6585; line-height: 1.6;
}
.cielo-skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%; animation: cielo-shimmer 1.2s infinite; border-radius: 8px; min-height: 1.2em;
}
@keyframes cielo-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.cielo-weather-fallback { font-size: 14px; color: var(--moon-muted); line-height: 1.5; }

/* ===== Price banner (agendar) ===== */
.price { background: var(--slate); color: var(--cream); border-radius: 22px; padding: clamp(22px,4vw,34px); display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 20px; align-items: center; }
.price__label { font-family: var(--font-mono); font-size: 11px; color: var(--moon-muted2); letter-spacing: .12em; margin-bottom: 6px; }
.price__val { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,5vw,44px); color: var(--amber); line-height: 1; }
.price__unit { font-size: 12px; color: var(--moon-muted2); margin-top: 6px; }
.price__feats { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--moon-muted); }
.price__feats div { display: flex; gap: 8px; }
.price__feats .tick { color: #7ca863; }

/* ===== Agendar booking ===== */
.agendar-grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; align-items: start; }
.agendar-card { background: #fff; border-radius: 24px; padding: clamp(20px,3vw,28px); box-shadow: 0 6px 24px rgba(58,42,77,0.07); }
.agendar-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.agendar-card__title { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 0; color: var(--text-dark); }
.agendar-cal__nav { display: flex; gap: 8px; }
.agendar-cal__btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid #e0d6c4; background: #f7f1e6; color: var(--text-dark); font-size: 16px; cursor: pointer; }
.agendar-cal__btn:disabled { opacity: 0.5; cursor: default; }
.agendar-cal__month { font-family: var(--font-mono); font-size: 13px; letter-spacing: .06em; color: var(--terra); text-transform: uppercase; margin-bottom: 14px; }
.agendar-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.agendar-cal__dow { padding: 8px 0; text-align: center; font-size: 11px; font-weight: 600; text-transform: uppercase; color: rgba(42,34,51,0.5); }
.agendar-cal__cell { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; aspect-ratio: 1; border: none; border-radius: 14px; font-size: 14px; font-weight: 600; cursor: pointer; background: #fff; color: var(--text-dark); border: 1px solid #e8dcc8; min-height: 44px; }
.agendar-cal__cell--muted { background: transparent; color: rgba(42,34,51,0.25); cursor: default; border-color: transparent; }
.agendar-cal__cell--past { background: transparent; color: rgba(42,34,51,0.35); cursor: default; border-color: transparent; }
.agendar-cal__cell--disabled { background: #ede4d3; color: rgba(42,34,51,0.55); cursor: default; border-color: transparent; }
.agendar-cal__cell--selected { background: var(--terra); color: #fff; border-color: var(--terra); }
.agendar-cal__cell--available:hover:not(:disabled) { opacity: 0.85; }
.agendar-cal__slots { font-size: 9px; font-weight: 500; color: inherit; opacity: 0.75; margin-top: 2px; }
.agendar-cal__legend { display: flex; gap: 16px; margin-top: 18px; flex-wrap: wrap; font-size: 12px; color: rgba(42,34,51,0.6); }
.agendar-cal__legend span { display: inline-flex; align-items: center; gap: 6px; }
.agendar-cal__swatch { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.agendar-cal__swatch--avail { background: #fff; border: 1px solid var(--terra); }
.agendar-cal__swatch--sel { background: var(--terra); }
.agendar-cal__swatch--off { background: #ede4d3; }
.agendar-form__hint { font-size: 13px; color: rgba(42,34,51,0.55); margin-bottom: 20px; }
.agendar-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.agendar-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.agendar-field label { font-size: 12px; font-weight: 600; color: rgba(42,34,51,0.65); }
.agendar-field input, .agendar-field textarea { width: 100%; border: 1px solid #e0d6c4; border-radius: 12px; padding: 12px 14px; font-size: 15px; color: var(--text-dark); background: #fff; }
.agendar-field textarea { resize: vertical; min-height: 88px; }
.agendar-stepper { display: flex; align-items: center; border: 1px solid #e0d6c4; border-radius: 12px; overflow: hidden; }
.agendar-stepper button { width: 40px; height: 44px; border: none; background: #f7f1e6; color: var(--text-dark); font-size: 18px; cursor: pointer; }
.agendar-stepper button:disabled { opacity: 0.4; cursor: default; }
.agendar-stepper__val { flex: 1; text-align: center; font-weight: 700; font-size: 16px; }
.agendar-summary { background: #f7f1e6; border-radius: 14px; padding: 14px 16px; margin-bottom: 16px; }
.agendar-summary__row { display: flex; justify-content: space-between; font-size: 14px; color: rgba(42,34,51,0.7); margin-bottom: 6px; }
.agendar-summary__row:last-child { margin-bottom: 0; font-weight: 800; font-size: 18px; color: var(--text-dark); }
.agendar-submit { width: 100%; background: var(--amber); color: var(--night); border: none; font-family: var(--font-display); font-weight: 700; font-size: 17px; padding: 16px; border-radius: 40px; cursor: pointer; }
.agendar-submit:disabled { opacity: 0.6; cursor: default; }
.agendar-note { font-family: var(--font-mono); font-size: 11px; color: rgba(42,34,51,0.45); text-align: center; line-height: 1.5; margin-top: 12px; }
.agendar-banner { margin-top: 12px; padding: 12px 14px; border-radius: 12px; font-size: 14px; }
.agendar-banner--error { background: #fde8e8; color: #8b2e2e; }
.agendar-confirm { text-align: center; padding: 12px 4px; }
.agendar-confirm__icon { width: 64px; height: 64px; border-radius: 50%; background: #5c7a4a; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 18px; }
.agendar-confirm__title { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin: 0 0 10px; color: var(--text-dark); }
.agendar-confirm__body { font-size: 15px; line-height: 1.6; color: rgba(42,34,51,0.65); margin: 0 0 20px; }
.agendar-confirm__box { background: #f7f1e6; border-radius: 14px; padding: 16px; text-align: left; font-size: 14px; color: rgba(42,34,51,0.75); display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.agendar-confirm__again { background: none; border: 1px solid var(--terra); color: var(--terra); font-weight: 700; font-size: 14px; padding: 12px 22px; border-radius: 30px; cursor: pointer; }
@media (max-width: 560px) { .agendar-form__row { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.footer { background: var(--night-deep); color: var(--moon-muted2); }
.footer--full { padding: 48px 24px 36px; }
.footer__cols { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 30px; align-items: start; }
.brand--footer { color: var(--cream); margin-bottom: 12px; font-size: 18px; }
.footer__tagline { font-size: 13px; line-height: 1.6; margin: 0; max-width: 34ch; }
.footer__heading { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #6d6585; margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__links a { color: #c5bcd6; text-decoration: none; }
.footer__links a:hover { color: var(--cream); }
.footer__links--row { flex-direction: row; flex-wrap: wrap; gap: 18px; }
.footer__legal { max-width: var(--wrap); margin: 32px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: #6d6585; display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; }
.footer--simple { padding: 40px 24px 34px; }
.footer__simplebar { max-width: var(--wrap); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer__simplebar .brand { color: var(--cream); }
.footer__legalsimple { max-width: var(--wrap); margin: 26px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: #6d6585; }

/* ===== Responsive ===== */
@media (max-width: 560px) {
  .nav { gap: 4px; }
  .nav__link { padding: 6px 7px; font-size: 12px; }
  .footer__legal { flex-direction: column; }
}
