/* AUTOCOLCA — hero Editorial + bandas de la home. */

/* ============ HERO A — Editorial (light, type-forward) ============ */
.hero-a { position: relative; padding: 124px 0 60px; background: var(--bg); overflow: hidden; }
.hero-a::before { content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 1000px; height: 600px;
  border-radius: 50%; background: radial-gradient(circle, var(--reserva-soft) 0%, transparent 68%); z-index: 0; }
.hero-a::after { content: ""; position: absolute; top: -120px; right: -140px; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, var(--volcanes-soft) 0%, transparent 70%); z-index: 0; opacity: 0.7; }
.hero-a-inner { position: relative; z-index: 2; width: 100%; text-align: center; max-width: 1020px; margin: 0 auto; }
.hero-a .eyebrow { justify-content: center; color: var(--accent); }
.hero-a h1 { color: var(--ink); max-width: 16ch; margin: 22px auto 0; }
.hero-a h1 em { color: var(--accent); font-style: italic; font-weight: 800; }
.hero-a .lede { color: var(--fg-muted); max-width: 600px; margin: 24px auto 0; }
.hero-a .ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.hero-a-band { position: relative; z-index: 2; margin-top: 56px; border-radius: var(--radius-xl); overflow: hidden;
  height: 400px; box-shadow: var(--shadow-lg); }
.hero-a-band .photo { width: 100%; height: 100%; }
.hero-a-band .hab-scrim { position: absolute; inset: 0; z-index: 5; background: linear-gradient(180deg, transparent 45%, rgba(8,16,12,0.62) 100%); }
.hero-a-foot { position: absolute; z-index: 6; inset: auto 0 0 0; padding: 26px 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.hero-sel { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-sel a { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 14px; font-weight: 600; text-decoration: none;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px); transition: all var(--dur-base) var(--ease-out); }
.hero-sel a:hover { background: #fff; color: var(--ink); text-decoration: none; }
.hero-sel a .dot { width: 9px; height: 9px; border-radius: 50%; }
.hero-a-foot .scroll-cue { color: rgba(255,255,255,0.85); }

/* ============ BOLETO BAND ============ */
.boleto-band { background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; }
.boleto-band::before { content: ""; position: absolute; inset: 0; opacity: 0.5;
  background: radial-gradient(80% 120% at 85% 50%, rgba(176,90,56,0.5), transparent 60%); }
.boleto-grid { position: relative; display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.boleto-grid h2 { color: #fff; margin: 16px 0 0; }
.boleto-grid .lede { color: var(--on-ink-soft); margin: 18px 0 26px; }
.boleto-cards { display: grid; gap: 14px; }
.boleto-opt { display: flex; align-items: center; gap: 20px; padding: 20px 24px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05); border: 1px solid var(--hairline-ink); transition: all var(--dur-base) var(--ease-out); cursor: pointer; }
.boleto-opt:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.28); }
.boleto-opt .bo-price { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -0.02em; min-width: 110px; }
.boleto-opt .bo-info { flex: 1; }
.boleto-opt .bo-info b { display: block; font-size: 16px; font-weight: 700; color: #fff; }
.boleto-opt .bo-info span { font-size: 13.5px; color: var(--on-ink-soft); }
.boleto-opt .bo-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 11px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.1); }
/* Boleto en mantenimiento — aviso dentro de la banda oscura. */
.boleto-maint { gap: 18px; }
.boleto-maint .pill-tag { background: var(--cta); color: #fff; align-self: flex-start; }
.boleto-maint .boleto-maint-note { font-size: 14.5px; color: var(--on-ink-soft); line-height: 1.6; margin: 0; max-width: 46ch; }
.boleto-maint .maint-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0; }
@media (max-width: 980px) { .boleto-maint .maint-meta { grid-template-columns: 1fr; } }

/* ============ SERVICIOS STRIP ============ */
.serv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.serv-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; cursor: pointer;
  transition: all var(--dur-base) var(--ease-out); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.serv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.serv-card .sc-ic { width: 52px; height: 52px; border-radius: var(--radius-md); display: inline-flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 20px; }
.serv-card h3 { font-size: 18px; margin: 0 0 8px; letter-spacing: -0.01em; }
.serv-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; margin: 0 0 20px; flex: 1; }
.serv-card .sc-cta { font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }

/* ============ FESTIVALES ============ */
.fest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fest-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; display: flex; gap: 18px; align-items: flex-start; transition: all var(--dur-base) var(--ease-out); cursor: pointer; }
.fest-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.fest-date { flex-shrink: 0; width: 60px; text-align: center; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.fest-date .fm { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: #fff; padding: 4px 0; }
.fest-date .fd { font-family: var(--font-display); font-weight: 800; font-size: 24px; padding: 8px 0; }
.fest-card .fc-body b { display: block; font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 7px; line-height: 1.25; }
.fest-card .fc-body .fl { font-size: 13px; color: var(--fg-muted); display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.fest-card .fc-body .ft { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

/* ============ AWARDS / SUSTAINABILITY ============ */
.green-band { background: var(--reserva-soft); }
.green-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.green-grid .gb-eyebrow { color: var(--reserva); }
.green-grid h2 em { font-style: italic; color: var(--reserva); }
.award-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.award-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 22px; display: flex; gap: 16px; align-items: center; transition: all var(--dur-base) var(--ease-out); }
.award-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); transform: translateY(-2px); }
.award-card .aw-ic { width: 44px; height: 44px; border-radius: var(--radius-pill); background: var(--reserva); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
/* Logo real del reconocimiento (sello oficial). */
.award-card .aw-logo { width: 60px; height: 60px; object-fit: contain; flex-shrink: 0; display: block; max-width: none; }
.award-card b { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.award-card span { font-size: 13px; color: var(--fg-muted); line-height: 1.45; }

/* ============ CTA FOOTER BAND ============ */
.cta-band { position: relative; overflow: hidden; color: #fff; }
.cta-band .photo { position: absolute; inset: 0; z-index: 0; }
.cta-band .cb-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,12,14,0.55), rgba(8,12,14,0.78)); }
.cta-band-inner { position: relative; z-index: 2; text-align: center; padding: 96px 0; }
.cta-band h2 { color: #fff; max-width: 18ch; margin: 18px auto 0; }
.cta-band .lede { color: rgba(255,255,255,0.85); max-width: 560px; margin: 20px auto 32px; }
.cta-band .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ HOME GRIDS (moved out of inline JSX so they stay responsive) ============ */
.dest-mosaic { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: repeat(2, 280px); gap: 18px; }
.dest-mosaic > a:first-child { grid-row: 1 / span 2; }
.news-grid-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

@media (max-width: 1080px) {
  .boleto-grid, .green-grid { grid-template-columns: 1fr; gap: 40px; }
  .serv-grid, .fest-grid { grid-template-columns: repeat(2, 1fr); }
  .award-grid { grid-template-columns: 1fr; }
  .news-grid-home { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .serv-grid, .fest-grid, .hero-sel { grid-template-columns: 1fr; }
  .hero-a-foot { flex-direction: column; align-items: flex-start; }
  .boleto-opt { flex-wrap: wrap; gap: 12px; }
  .dest-mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .dest-mosaic > a, .dest-mosaic > a:first-child { grid-row: auto; min-height: 240px; }
  .news-grid-home { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-a-band { height: 300px; }
}
