/* ============================================================
   Territorios Resilientes 2026 — Seminario Internacional
   Estilo: Organic Biophilic (sostenibilidad / clima)
   Tipografía: Crimson Pro (titulares) + Atkinson Hyperlegible (texto)
   Adaptado para Drupal 11 theme
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --primary: #99C43D;
  --primary-700: #7BA52C;
  --primary-900: #4C661A;
  --secondary: #B6D957;
  --deep: #243309;
  --title: #00004D;
  --btn: #00004D;
  --btn-hover: #1a1a7a;

  --gold: #00004D;
  --gold-bright: #1a1a7a;

  --bg: #ffffff;
  --bg-soft: #f6f8ee;
  --bg-mint: #fafbf2;
  --tint: #eef5db;
  --surface: #ffffff;
  --border: #d9e8b0;
  --border-soft: #eaf3d4;

  --fg: #0c2a22;
  --fg-muted: #4b6b60;
  --fg-soft: #6b8a7f;
  --on-primary: #1f2e08;

  --font-head: "Crimson Pro", Georgia, "Times New Roman", serif;
  --font-body: "Atkinson Hyperlegible", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  --sh-sm: 0 1px 3px rgba(6, 78, 59, .08), 0 1px 2px rgba(6, 78, 59, .06);
  --sh-md: 0 8px 24px rgba(6, 78, 59, .10);
  --sh-lg: 0 18px 48px rgba(6, 78, 59, .14);
  --sh-gold: 0 10px 30px rgba(0, 0, 77, .28);

  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --header-h: 76px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 2000;
  background: var(--primary-900);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: var(--r-sm);
  transition: top .2s var(--ease);
}

.skip-link:focus {
  top: 12px;
}

.flag-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--title);
  letter-spacing: -.01em;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
}

h3 {
  font-size: 1.3rem;
  line-height: 1.2;
}

p {
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  padding: .8rem 1.5rem;
  border-radius: var(--r-pill);
  min-height: 48px;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}

.btn svg {
  flex: none;
}

.btn-lg {
  padding: .95rem 1.9rem;
  font-size: 1.05rem;
  min-height: 54px;
}

.btn-block {
  width: 100%;
}

.btn-primary, a.btn-primary, a.btn-primary:visited {
  background: var(--btn);
  color: #fff;
  box-shadow: var(--sh-md);
}

.btn-primary:hover, a.btn-primary:hover {
  background: var(--btn-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

.btn-gold, a.btn-gold, a.btn-gold:visited {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--sh-gold);
}

.btn-gold:hover, a.btn-gold:hover {
  background: var(--btn-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost, a.btn-ghost, a.btn-ghost:visited {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, .55);
}

.btn-ghost:hover, a.btn-ghost:hover {
  background: rgba(255, 255, 255, .28);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--btn);
  border: 1.5px solid var(--btn);
}

.btn-outline:hover {
  background: var(--btn);
  color: #fff;
  border-color: var(--btn);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--sh-sm);
  border-color: var(--border-soft);
}

.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-right: auto;
}

.brand-mark {
  color: var(--primary);
  display: grid;
  place-items: center;
  flex: none;
}

.brand-logo {
  max-height: 44px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.12rem;
  color: var(--primary-900);
}

.brand-text small {
  font-size: .72rem;
  color: var(--fg-soft);
  letter-spacing: .01em;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.main-nav a {
  display: inline-block;
  padding: .5rem .62rem;
  border-radius: var(--r-sm);
  font-size: .86rem;
  font-weight: 700;
  color: var(--fg-muted);
  transition: color .2s var(--ease), background-color .2s var(--ease);
  position: relative;
}

.main-nav a:hover {
  color: var(--primary-700);
  background: var(--tint);
}

.main-nav a.active {
  color: var(--primary-700);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: .62rem;
  right: .62rem;
  bottom: .12rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.header-cta {
  margin-left: .5rem;
  padding: .6rem 1.2rem;
  min-height: 42px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--primary-900);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 7rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 244, 244, .75) 0%,
    rgba(244, 244, 244, .6) 40%,
    rgba(244, 244, 244, .5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: clamp(40px, 6vw, 80px);
  display: block;
}

/* ---------- Tira animada (marquee) ---------- */
.marquee {
  background: #99C43D;
  overflow: hidden;
  white-space: nowrap;
  padding: .9rem 0;
  border-block: 1px solid rgba(0, 0, 77, .12);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: #fff;
}

.marquee-star {
  display: inline-flex;
  color: var(--title);
}

.ms {
  width: 16px;
  height: 16px;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--primary);
  color: var(--title);
  padding: .5rem 1.1rem;
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: var(--sh-md);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(0, 0, 77, .25);
}

.hero-title {
  font-size: clamp(2.7rem, 8.5vw, 5.6rem);
  line-height: .98;
  margin-top: 1.2rem;
  color: var(--title);
  letter-spacing: -.02em;
}

.hero-title .year {
  color: var(--primary);
}

.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 500;
  color: var(--primary-700);
  margin-top: .6rem;
  max-width: 26ch;
}

.hero-desc {
  margin-top: 1.1rem;
  margin-bottom: 1.8rem;
  max-width: 52ch;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--title);
}

.hero-desc p {
  margin: 0 0 .6rem;
}

.hero-desc p:last-child {
  margin-bottom: 0;
}

.hero-subtitle .sub-top {
  color: var(--title);
}

.hero-subtitle .accent {
  color: var(--primary);
  font-style: normal;
  white-space: nowrap;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  margin-inline: 0;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(6px);
  color: var(--primary-900);
  font-weight: 700;
  font-size: .95rem;
  padding: .6rem 1.1rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-soft);
}

.hero-facts svg {
  color: var(--primary);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.countdown {
  display: flex;
  gap: .6rem;
  margin-top: 2.4rem;
}

.cd-item {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: .7rem 1rem;
  min-width: 72px;
  text-align: center;
  box-shadow: var(--sh-sm);
}

.cd-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary-900);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.cd-lbl {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-top: .35rem;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section-soft {
  background: #f4f4f4;
}

.section-head {
  max-width: 100%;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .7rem;
}

.kicker-light {
  color: rgba(255, 255, 255, .85);
}

.section-head h2 {
  margin-bottom: .6rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--fg-muted);
  /*max-width: 60ch;*/
}

/* ---------- Seminario ---------- */
.prose-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.prose p {
  margin-bottom: 1.1rem;
  color: var(--fg-muted);
  font-size: 1.08rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--primary-900);
  font-weight: 700;
}

.facts-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  box-shadow: var(--sh-md);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.facts-card h3 {
  margin-bottom: 1.1rem;
}

.facts-card ul {
  display: grid;
  gap: 1.05rem;
  margin-bottom: 1.6rem;
}

.facts-card li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.facts-card svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex: none;
  margin-top: 2px;
}

.fc-k {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

.fc-v {
  display: block;
  font-weight: 700;
  color: var(--primary-900);
}

/* ---------- Convocatoria ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem;
}

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.4rem;
  box-shadow: var(--sh-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--primary);
}

.ac-ico {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--tint);
  color: var(--primary);
  margin-bottom: 1rem;
}

.ac-ico svg {
  width: 26px;
  height: 26px;
}

.audience-card h3 {
  font-size: 1.16rem;
  margin-bottom: .35rem;
}

.audience-card p {
  color: var(--fg-muted);
  font-size: .96rem;
}

/* ---------- Inscripcion + Inversion ---------- */
.register-band {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  background: linear-gradient(135deg, var(--primary-900), var(--primary-700) 60%, var(--primary));
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}

.register-band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(182, 217, 87, .5), transparent 70%);
  pointer-events: none;
}

.rb-text {
  position: relative;
  z-index: 1;
}

.rb-text h2 {
  color: #fff;
  margin-bottom: .7rem;
}

.rb-text p {
  color: rgba(255, 255, 255, .88);
  max-width: 46ch;
  margin-bottom: 1.6rem;
}

.rb-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.rb-date {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
  font-weight: 700;
}

.rb-date svg {
  flex: none;
  color: rgba(255, 255, 255, .7);
}

.rb-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(6px);
}

.rb-price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin: .3rem 0 .6rem;
}

.rb-note {
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
  margin-bottom: 1.2rem;
}

.rb-badge {
  align-self: center;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
  padding: .4rem 1rem;
  border-radius: var(--r-pill);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.register-band-solo {
  display: block;
}

.register-band-solo .rb-text p {
  margin-bottom: 1.8rem;
}

.register-band-solo .rb-actions .btn {
  margin: 0;
}

/* ---------- Precios / Inversion ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-bottom: 1rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.9rem 1.4rem;
  box-shadow: var(--sh-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--primary);
}

.pc-ico {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--tint);
  color: var(--primary);
  margin-bottom: .4rem;
}

.pc-ico svg {
  width: 26px;
  height: 26px;
}

.pc-title {
  color: var(--title);
  font-size: 1.05rem;
  line-height: 1.25;
}

.pc-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--primary-900);
  font-variant-numeric: tabular-nums;
}

.pc-cur {
  color: var(--primary);
  font-size: 1.3rem;
  vertical-align: super;
  margin-right: .06em;
}

.pc-dec {
  color: var(--primary);
  font-size: 1.4rem;
}

.pc-feat {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .35rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary-700);
  background: var(--tint);
  border: 1px solid var(--border);
  padding: .35rem .8rem;
  border-radius: var(--r-pill);
}

.pc-feat svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
  flex: none;
}

.pricing-note {
  text-align: center;
  color: var(--fg-soft);
  font-size: .9rem;
  font-style: italic;
  margin-bottom: 2.4rem;
}

/* ---------- Ejes tematicos ---------- */
.ejes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.eje-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem 1.8rem;
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.eje-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(var(--primary), var(--secondary));
}

.eje-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.eje-card-wide {
  grid-column: 1 / -1;
}

.eje-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--tint);
  -webkit-text-stroke: 1.5px var(--secondary);
  line-height: 1;
  display: block;
  margin-bottom: .6rem;
}

.eje-card h3 {
  font-size: 1.32rem;
  margin-bottom: .55rem;
}

.eje-card p {
  color: var(--fg-muted);
}

/* ---------- ODS ---------- */
.ods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.1rem;
}

.ods-card {
  display: flex;
  gap: 1.1rem;
  align-items: stretch;
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.ods-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.ods-num {
  flex: none;
  width: 78px;
  display: grid;
  place-items: center;
  background: var(--ods);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
}

.ods-body {
  padding: 1.1rem 1.2rem 1.1rem 0;
}

.ods-body h3 {
  font-size: 1.08rem;
  color: var(--ods);
  margin-bottom: .25rem;
}

.ods-body p {
  color: var(--fg-muted);
  font-size: .94rem;
}

/* ---------- Ponentes ---------- */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.4rem;
}

.speaker-card {
  text-align: center;
}

.sp-photo {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--sh-md);
  border: 3px solid #fff;
  background: var(--bg-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.speaker-card:hover .sp-photo {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.sp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-initials {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.sp-initials::after {
  content: attr(data-initials);
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(31, 46, 8, .92);
}

.sp-inst {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
}

.speaker-card h3 {
  font-size: 1.1rem;
  margin-bottom: .2rem;
}

.sp-org {
  font-size: .85rem;
  color: var(--fg-soft);
  font-weight: 300;
}

.sp-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .35rem;
}

.sp-link {
  display: inline-flex;
  line-height: 0;
  transition: transform .2s var(--ease);
}

.sp-link:hover {
  transform: translateY(-2px) scale(1.08);
}

.flag {
  width: 22px;
  height: 15px;
  flex: none;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(6, 78, 59, .14), 0 1px 2px rgba(6, 78, 59, .12);
}

.speakers-note {
  text-align: center;
  margin-top: 2.2rem;
  color: var(--fg-soft);
  font-style: italic;
}

/* ---------- Agenda ---------- */
.agenda-tabs {
  display: flex;
  gap: .6rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.agenda-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .8rem 1.4rem;
  transition: all .2s var(--ease);
}

.agenda-tab .at-day {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-900);
}

.agenda-tab .at-date {
  font-size: .82rem;
  color: var(--fg-soft);
  font-weight: 700;
}

.agenda-tab:hover {
  border-color: var(--primary);
}

.agenda-tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
}

.agenda-tab.is-active .at-day, .agenda-tab.is-active .at-date {
  color: #1f2e08;
}

.agenda-list {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--border);
  margin-left: 1rem;
}

.agenda-list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1.3rem;
  padding: 1.1rem 0 1.1rem 1.5rem;
  position: relative;
}

.agenda-list li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 1.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
}

.section-soft .agenda-list li::before {
  border-color: var(--bg-soft);
}

.ag-time {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.ag-body h3 {
  font-size: 1.12rem;
  margin: 0 0 .2rem 0;
}

.ag-body p {
  color: var(--fg-muted);
  font-size: .96rem;
}

.ag-tag {
  display: inline-block;
  background: var(--tint);
  color: var(--primary-700);
  font-size: .74rem;
  font-weight: 700;
  padding: .15rem .6rem;
  border-radius: var(--r-pill);
  margin-left: .3rem;
  border: 1px solid var(--border);
}

.section-soft .ag-tag {
  background: #fff;
}

.agenda-soon {
  margin-top: 1.4rem;
  color: var(--fg-soft);
  font-style: italic;
  font-size: .92rem;
}

/* ---------- Venue ---------- */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: stretch;
}

.venue-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venue-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.venue-line {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--fg-muted);
  margin-bottom: .8rem;
}

.venue-line svg {
  color: var(--primary);
  flex: none;
}

.venue-info .btn {
  align-self: flex-start;
  margin-top: .8rem;
}

.venue-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  min-height: 320px;
}

.venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* ---------- Certificado ---------- */
.cert-card {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-mint));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--sh-sm);
}

.cert-ico {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: var(--r-lg);
  background: #fff;
  color: var(--primary);
  box-shadow: var(--sh-sm);
  flex: none;
}

.cert-text {
  flex: 1 1 320px;
}

.cert-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: .5rem;
}

.cert-text p {
  color: var(--fg-muted);
  max-width: 60ch;
}

.cert-card .btn {
  flex: none;
}

/* ---------- Organizadores ---------- */
.org-block {
  margin-bottom: 2.4rem;
}

.org-block:last-child {
  margin-bottom: 0;
}

.org-label {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 1.1rem;
  text-align: center;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
}

.logo-grid > .logo-tile {
  flex: 0 0 calc(25% - 0.825rem);
}

.logo-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
  margin-inline: auto;
}

.logo-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.6rem 1.2rem;
  text-align: center;
  box-shadow: var(--sh-sm);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .3rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.logo-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.lt-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-900);
}

.lt-sub {
  font-size: .8rem;
  color: var(--fg-soft);
}

/* ---------- Footer (estilo tradedata) ---------- */
.td-site-footer {
  background: #0d0d0d;
  background-image: url(../images/dotted-map.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
  color: rgba(255, 255, 255, .78);
}
.td-footer-main {
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .td-footer-main { padding-top: 5rem; }
}
.td-footer-top {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .td-footer-top { margin-bottom: 3.125rem; }
}
.td-footer-logo img {
  max-width: 16.5rem;
  height: auto;
}
.td-footer-middle {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .td-footer-middle { padding-top: 3.125rem; padding-bottom: 2.1875rem; }
}
@media screen and (max-width: 767px) {
  .td-footer-middle { padding: 0; }
}
.td-footer-col {
  width: 100%;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .td-footer-col { width: 25%; margin-bottom: 0; padding-right: 1rem; }
}
.td-footer-col h3 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  letter-spacing: 0.03em;
}
.td-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.td-footer-col ul li {
  margin-bottom: 0.625rem;
}
.td-footer-col ul li a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color .2s;
}
.td-footer-col ul li a:hover {
  color: #34d399;
}
.td-footer-services a i {
  width: 20px;
  text-align: center;
  margin-right: 6px;
  font-size: 0.8125rem;
  opacity: 0.7;
  transition: opacity .2s;
}
.td-footer-services a:hover i { opacity: 1; }
.td-footer-social-col {
  display: flex;
  align-items: flex-start;
}
.td-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}
.td-social a {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity .2s;
}
.td-social a:hover { opacity: 0.7; }
.td-social a i {
  color: #fff;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .td-social a i { font-size: 1.375rem; }
}
.td-social a.td-social-img img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.td-footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.td-footer-copyright p {
  font-size: 0.75rem;
  line-height: 2;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.td-footer-copyright p a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color .2s;
}
.td-footer-copyright p a:hover { color: #fff; }

/* ---------- Login Page ---------- */
#tr-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, #4C661A 0%, #3a4f14 40%, #2a3a0f 100%);
}
.tr-login-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  width: 100%;
  max-width: 440px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.tr-login-brand {
  text-align: center;
  margin-bottom: 32px;
}
.tr-login-logo {
  max-height: 60px;
  width: auto;
  display: block;
  margin: 0 auto 16px;
}
.tr-login-icon {
  color: var(--secondary, #f59e0b);
  display: block;
  margin-bottom: 12px;
}
.tr-login-site {
  font-family: var(--font-head, 'Crimson Pro', serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
  margin: 0;
}
.tr-login-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-bottom: 4px;
}
#tr-login form {
  margin-top: 16px;
}
#tr-login label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
  display: block;
  font-size: .9rem;
}
#tr-login .description,
#tr-login .form-item .description {
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}
#tr-login .form-item {
  margin-bottom: 16px;
}
#tr-login input[type="text"],
#tr-login input[type="password"],
#tr-login input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-size: 1rem;
  color: #fff;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#tr-login input[type="text"]::placeholder,
#tr-login input[type="password"]::placeholder,
#tr-login input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
#tr-login input[type="text"]:focus,
#tr-login input[type="password"]:focus,
#tr-login input[type="email"]:focus {
  border-color: var(--secondary, #f59e0b);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}
#tr-login input[type="submit"],
#tr-login button[type="submit"] {
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
  padding: 13px 25px;
  background: var(--btn, #00004D);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: .5px;
}
#tr-login input[type="submit"]:hover,
#tr-login button[type="submit"]:hover {
  background: var(--btn-hover, #1a1a7a);
  color: #fff;
  transform: translateY(-1px);
}
.tr-login-divider {
  display: flex;
  align-items: center;
  margin: 28px 0;
}
.tr-login-divider::before,
.tr-login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.tr-login-divider span {
  padding: 0 14px;
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}
.tr-login-social {
  text-align: center;
}
.tr-btn-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff !important;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.tr-btn-google:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.tr-btn-google i {
  font-size: 1.1rem;
  color: var(--secondary, #f59e0b);
}
#tr-login a {
  color: var(--secondary, #f59e0b);
  text-decoration: none;
}
#tr-login a:hover {
  color: #1a1a7a;
  text-decoration: underline;
}
@media (max-width: 576px) {
  .tr-login-card {
    padding: 32px 24px;
  }
  .tr-login-site {
    font-size: 1.3rem;
  }
}

/* ---------- Scroll to Top ---------- */
.td-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s ease;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.td-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.td-scroll-top:hover {
  background: var(--primary-900);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.td-scroll-top:focus { outline: 2px solid var(--primary); outline-offset: 3px; }

/* ---------- Contactenos ---------- */
.section-head-center {
  margin-inline: auto;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

.contact-lead {
  color: var(--fg-soft);
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-cards li {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.contact-cards li:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

.cc-ico {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-sm);
}

.cc-ico svg {
  width: 22px;
  height: 22px;
}

.cc-k {
  display: block;
  font-weight: 700;
  color: var(--primary-900);
  font-size: .95rem;
}

.cc-v {
  display: block;
  color: var(--fg-muted);
  font-size: .92rem;
  word-break: break-word;
}

a.cc-v {
  transition: color .2s var(--ease);
}

a.cc-v:hover {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--sh-md);
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary-900);
  margin-bottom: .45rem;
}

.req {
  color: var(--gold);
}

.field input, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--fg);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: .8rem 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(153, 196, 61, .25);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field-search {
  position: relative;
}

.field-search input {
  padding-right: 2.7rem;
}

.field-search svg {
  position: absolute;
  right: .95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--fg-soft);
  pointer-events: none;
}

.contact-form .btn {
  margin-top: .3rem;
}
.contact-form .form-submit,
.contact-form .webform-button--submit,
.contact-form button[type="submit"],
.contact-form input[type="submit"] {
  background-color: var(--btn);
  border-color: var(--btn);
  color: #fff;
  padding: .75rem 2rem;
  border-radius: var(--radius-md, .5rem);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  border: 2px solid var(--btn);
}
.contact-form .form-submit:hover,
.contact-form .webform-button--submit:hover,
.contact-form button[type="submit"]:hover,
.contact-form input[type="submit"]:hover {
  background-color: var(--btn-hover);
  border-color: var(--btn-hover);
  color: #fff;
}

.form-status {
  margin-top: .9rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--primary-700);
  min-height: 1.2em;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: none;
  text-align: center;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  padding: 1rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-gold);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Drupal overrides ---------- */
.tr-body .toolbar-oriented .toolbar-bar {
  z-index: 1001;
}

.tr-body .block {
  margin: 0;
  padding: 0;
}

.tr-body .views-element-container {
  margin: 0;
  padding: 0;
}

.hero ul, .hero ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.facts-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section ul, .section ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.td-site-footer ul, .td-site-footer ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(14px);
    box-shadow: var(--sh-lg);
    border-top: 1px solid var(--border-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
  }

  .main-nav.open {
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .6rem var(--gutter) 1.4rem;
  }

  .main-nav a {
    padding: .9rem .4rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-soft);
    border-radius: 0;
  }

  .main-nav a.active::after {
    display: none;
  }

  .main-nav a.active {
    background: var(--tint);
    border-radius: var(--r-sm);
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }
}

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

  .facts-card {
    position: static;
  }

  .register-band {
    grid-template-columns: 1fr;
  }

  .ejes-grid {
    grid-template-columns: 1fr;
  }

  .venue-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid > .logo-tile {
    flex: 0 0 calc(50% - 0.55rem);
  }

  .cert-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 1rem;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    padding-bottom: 5.5rem;
  }

  .countdown {
    gap: .4rem;
  }

  .cd-item {
    min-width: 0;
    flex: 1;
    padding: .6rem .3rem;
  }

  .cd-num {
    font-size: 1.5rem;
  }

  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .logo-grid > .logo-tile,
  .logo-grid-2 > .logo-tile {
    flex: 0 0 100%;
  }

  .agenda-list li {
    grid-template-columns: 60px 1fr;
    gap: .8rem;
    padding-left: 1.1rem;
  }

  .sticky-cta {
    display: block;
  }

  .hero-cta .btn {
    flex: 1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 0;
    padding: 1.5rem 1.2rem;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none !important;
    transform: none !important;
  }
}
.mx-auto{margin-right: auto !important;
  margin-left: auto !important;}
