:root {
  --navy: #053050;
  --deep: #021c30;
  --sea: #0e6f8c;
  --ink: #123048;
  --muted: #617889;
  --gold: #c2a35b;
  --gold-soft: #e8d7a8;
  --fog: #f5f8fb;
  --line: rgba(5, 48, 80, 0.11);
  --wa: #25d366;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Outfit", system-ui, sans-serif;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--fog);
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--sea); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: min(1040px, calc(100% - 2rem));
  margin-inline: auto;
}
.wrap.narrow { width: min(540px, calc(100% - 2rem)); }

/* Round logo: show FULL mark (no crop) */
.brand-logo-wrap,
.hero-badge {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  overflow: hidden;
}
.brand-logo-wrap {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.brand-logo,
.hero-badge img,
.page-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12%;
  background: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.1rem;
  background: rgba(245, 248, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.page-home .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
  border-bottom-color: transparent;
}
.page-home .brand-text,
.page-home .site-nav > a { color: #fff; }
.page-home .nav-toggle span { background: #fff; }
.page-home .brand-logo-wrap { border-color: rgba(255,255,255,0.55); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand:hover { text-decoration: none; }
.brand-text span {
  font-weight: 500;
  opacity: 0.75;
  margin-left: 0.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}
.site-nav a:hover { opacity: 0.8; text-decoration: none; }
.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deep) !important;
  font-weight: 650 !important;
}
.page-home .nav-cta {
  background: #fff;
  color: var(--deep) !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(14, 111, 140, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 80%, rgba(194, 163, 91, 0.18), transparent 50%),
    linear-gradient(165deg, var(--deep) 0%, var(--navy) 55%, #0a4a6a 100%);
}
.hero-wash {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 30%, transparent 90%);
  animation: gridDrift 20s linear infinite;
  pointer-events: none;
}
.hero-shore {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(64px, 12vw, 110px);
  color: var(--fog);
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--header-h) + 1.5rem) 0 5rem;
}
.hero-badge {
  width: clamp(168px, 34vw, 230px);
  height: clamp(168px, 34vw, 230px);
  margin: 0 auto 1.4rem;
  border-width: 3px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  animation: pop 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-kicker {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  animation: rise 0.85s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-lead {
  margin: 0.85rem auto 0;
  max-width: 28rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  animation: rise 0.85s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-cta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  animation: rise 0.85s 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Sections */
.band { padding: clamp(3.2rem, 7vw, 5rem) 0; }
.band-soft { background: #eaf0f5; }
.band-end {
  background: var(--navy);
  color: #fff;
  padding: clamp(2.8rem, 6vw, 4rem) 0;
}
.page-top { padding-top: 2.5rem; }

.eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.band-head { max-width: 34rem; margin-bottom: 1.8rem; }
.band-head h1,
.band-head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.7rem, 3.5vw, 2.25rem);
  letter-spacing: -0.03em;
  color: var(--navy);
  font-weight: 700;
}
.band-end h2 { color: #fff; }
.band-head p { margin: 0; color: var(--muted); }

.course-rows,
.agenda-rows,
.quote-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.course-rows { border-top: 1px solid var(--line); }
.course-rows > li {
  display: grid;
  grid-template-columns: 7.5rem 1.4fr 0.7fr;
  gap: 1.25rem 1.5rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.course-media {
  margin: 0;
  width: 7.5rem;
  height: 5.6rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(11, 31, 58, 0.04);
  flex-shrink: 0;
}
.course-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-main h3 {
  margin: 0 0 0.3rem;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.course-main p { margin: 0; color: var(--muted); }
.course-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  text-align: right;
}
.price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}
.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.price-stack.has-badge .price {
  font-size: 1.55rem;
}
.price-ribbon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.8rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background-color: #b8923f;
  background-image: linear-gradient(135deg, #b8923f 0%, var(--gold) 45%, #e0c57a 100%);
  border-radius: 999px;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(194, 163, 91, 0.4);
  isolation: isolate;
  animation: price-ribbon-in 0.55s ease both;
}
.price-ribbon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 7px;
  height: 7px;
  background-color: #b8923f;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 1px;
  z-index: 0;
}
@keyframes price-ribbon-in {
  from { opacity: 0; transform: translateY(4px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.meta { color: var(--muted); font-size: 0.9rem; }
.link-action {
  font-weight: 650;
  color: var(--sea);
  white-space: nowrap;
}

.agenda-rows { border-top: 1px solid var(--line); }
.agenda-rows > li {
  display: grid;
  grid-template-columns: 6.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.agenda-rows time .d {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.agenda-rows time .w {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: lowercase;
}
.agenda-info strong { display: block; color: var(--navy); }
.agenda-info span { color: var(--muted); font-size: 0.9rem; }
.agenda-empty { padding: 1.2rem 0; color: var(--muted); border-bottom: 1px solid var(--line); }
.agenda-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 1.1rem;
}
.agenda-pager-meta {
  color: var(--muted);
  font-size: 0.9rem;
}
.btn.ghost-navy {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
}
.btn.ghost-navy:hover {
  border-color: var(--navy);
  background: rgba(11, 31, 58, 0.04);
  color: var(--navy);
  text-decoration: none;
}
.btn.ghost-navy.disabled {
  opacity: 0.35;
  pointer-events: none;
}

.quote-list { display: grid; gap: 0; }
.quote-list li {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.quote-list li:last-child { border-bottom: 1px solid var(--line); }
.quote-list blockquote {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2.3vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--navy);
  max-width: 38rem;
}
.quote-list .stars {
  margin: 0 0 0.55rem;
  display: flex;
  gap: 0.12rem;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.quote-list .stars .on { color: var(--gold); }
.quote-list .stars .off { color: rgba(11, 31, 58, 0.18); }
.quote-list cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-cta {
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}
.review-cta-copy {
  max-width: 28rem;
}
.review-cta-copy h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  letter-spacing: -0.03em;
  color: var(--navy);
  font-weight: 700;
}
.review-cta-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}
.review-cta-link {
  margin-top: 0.85rem !important;
}
.review-cta-link a {
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.review-qr {
  margin: 0;
  text-align: center;
  flex-shrink: 0;
}
.review-qr img {
  display: block;
  width: 168px;
  height: 168px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem;
}
.review-qr figcaption {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.notice.ok {
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.08);
}
.notice.ok p { margin: 0.45rem 0 0; color: var(--muted); }

.cta-panel { text-align: center; max-width: 30rem; }
.cta-panel h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  letter-spacing: -0.03em;
}
.cta-panel p { margin: 0 0 1.35rem; color: rgba(255,255,255,0.78); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn.primary {
  background: var(--gold);
  color: var(--deep);
}
.btn.primary:hover { background: var(--gold-soft); }
.btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn.ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn.sm { padding: 0.5rem 0.95rem; font-size: 0.9rem; }
.btn.wa {
  background: var(--wa);
  color: #062b16;
}
.btn.wa:hover { background: #3be07a; color: #062b16; }

.personal-cta {
  margin-top: 2.4rem;
  padding: 1.6rem 0 0.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem 1.5rem;
}
.personal-cta-copy {
  max-width: 36rem;
}
.personal-cta-copy h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.03em;
  color: var(--navy);
  font-weight: 700;
}
.personal-cta-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.form-stack label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: var(--navy);
}
.form-stack input,
.form-stack select,
.form-stack textarea,
.pay-box textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  margin-bottom: 0.3rem;
}
.form-stack p { margin: 0 0 1rem; }
.help, .muted { color: var(--muted); font-size: 0.88rem; }
.form-errors, .errorlist { color: #b42318; list-style: none; padding: 0; }
.notice {
  margin: 1.2rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pay-box { text-align: center; }
.qr { width: 220px; height: 220px; margin: 0 auto 1rem; background: #fff; border-radius: 8px; }
.status-line { margin-top: 1rem; color: var(--gold); font-weight: 650; }
.demo-box { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }

.page-mark {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 1rem;
  padding: 12%;
}
.prose h2 {
  margin: 2rem 0 0.55rem;
  color: var(--navy);
  font-size: 1.2rem;
}
.plain-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer {
  padding: 0 0 1.8rem;
  border-top: 1px solid var(--line);
  background: #fff;
}
.partners {
  padding: 1.1rem 0 0.9rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.1rem;
}
.partners-head {
  text-align: center;
  margin-bottom: 0.55rem;
}
.partners-head h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--navy);
  letter-spacing: -0.03em;
}
.partners-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.25rem 0.55rem;
  max-width: 22rem;
  margin: 0 auto;
}
.partners-viewport {
  overflow: hidden;
  min-height: 5.5rem;
}
.partners-track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 5.5rem;
}
.partners-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.partners-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.partners-slide img {
  width: min(96px, 28vw);
  height: min(96px, 28vw);
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(11, 31, 58, 0.07);
}
.partners-nav {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.partners-nav:hover {
  border-color: var(--navy);
  background: rgba(11, 31, 58, 0.04);
}
.partners-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
}
.partners-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(11, 31, 58, 0.2);
  cursor: pointer;
}
.partners-dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.footer-brand strong { color: var(--navy); }
.footer-brand p,
.footer-note {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.messages { list-style: none; margin: 1rem auto; padding: 0; }
.messages li {
  background: #fff;
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  min-height: 52px;
  padding: 0.65rem 1rem 0.65rem 0.85rem;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.wa-float:hover { color: #fff; text-decoration: none; transform: translateY(-2px); }
.wa-float svg { flex-shrink: 0; }

.aula-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.aula-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1.25rem;
  display: grid;
  gap: 0.9rem;
  background: #fff;
}
.aula-card h2 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  color: var(--navy);
}
.aula-meta,
.aula-when,
.aula-desc { margin: 0; color: var(--muted); }
.aula-when { font-weight: 600; color: var(--navy); margin-top: 0.35rem !important; }
.aula-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  align-items: center;
}
.aula-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.2rem 0 1.6rem;
}
.aula-empty {
  padding: 1.2rem 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.btn.disabled,
.btn.primary.disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}
.livepix-card {
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  display: grid;
  gap: 0.15rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.livepix-card strong { color: var(--navy); }
.livepix-support {
  margin: 1.6rem 0;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.livepix-support h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: var(--navy);
}
.livepix-qr {
  display: block;
  margin: 0.9rem auto;
  width: 180px;
  height: 180px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.4rem;
}
.livepix-widget {
  margin: 0.9rem auto 0;
  max-width: 420px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #0b1220;
}
.livepix-widget iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes pop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: none; }
}
@keyframes gridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(48px); }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--deep);
    padding-bottom: 2rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    color: #fff !important;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-cta {
    margin: 1rem 1.25rem 0;
    text-align: center;
    background: var(--gold) !important;
    color: var(--deep) !important;
  }
  body.nav-open { overflow: hidden; }

  /* Evita faixa vazia sob o hero no celular */
  .hero {
    min-height: 0;
    align-content: center;
  }
  .hero-inner {
    padding: calc(var(--header-h) + 1.1rem) 0 2.75rem;
  }
  .hero-badge {
    width: min(148px, 42vw);
    height: min(148px, 42vw);
    margin-bottom: 1rem;
  }
  .hero-kicker { font-size: clamp(1.75rem, 9vw, 2.4rem); }
  .hero-lead { font-size: 1rem; margin-top: 0.65rem; }
  .hero-cta { margin-top: 1.2rem; }
  .hero-shore { height: 56px; }
  .band { padding: 2.4rem 0; }
  .band-end { padding: 2.4rem 0; }

  .course-rows > li {
    grid-template-columns: 5.5rem 1fr;
    gap: 0.85rem 1rem;
  }
  .course-media {
    width: 5.5rem;
    height: 4.2rem;
    grid-row: 1 / span 2;
  }
  .course-side {
    grid-column: 2;
    align-items: flex-start;
    text-align: left;
  }
  .price-stack { align-items: flex-start; }
  .price-ribbon {
    padding: 0.38rem 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: #fff !important;
    background-color: #b8923f !important;
    background-image: linear-gradient(135deg, #9a7a32 0%, #c2a35b 50%, #d4b86a 100%) !important;
    box-shadow: 0 3px 10px rgba(154, 122, 50, 0.45);
  }
  .agenda-rows > li {
    grid-template-columns: 5rem 1fr;
  }
  .agenda-rows .btn {
    grid-column: 2;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
