/* =========================================================
   CEATAF BR — Folha de estilo principal
   Paleta derivada da logo oficial (verde + amarelo + azul)
   Inspiração de layout: somos.coop.br
   ========================================================= */

:root {
  /* Marca */
  --navy:         #0A2A8C;   /* azul royal profundo (fundo da logo) */
  --navy-deep:    #071E63;
  --blue:         #0F6FC5;   /* azul vivo (figuras) */
  --green:        #12833C;   /* verde principal (círculo) */
  --green-deep:   #0C5E2B;
  --green-bright: #1BA83B;   /* verde vivo (faixa BRASIL) */
  --gold:         #F5C518;   /* amarelo-ouro (destaques) */
  --gold-deep:    #E0A800;

  /* Neutros */
  --ink:      #17223B;
  --muted:    #5B6472;
  --white:    #ffffff;
  --bg:       #ffffff;
  --bg-soft:  #F3F7F3;   /* verde muito claro */
  --bg-alt:   #F5F7FB;   /* azul muito claro */
  --line:     #E4E9EE;

  /* Tipografia */
  --font-head: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(10, 42, 140, .08);
  --shadow-lg: 0 20px 50px rgba(10, 42, 140, .14);
  --header-h: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

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

.section { padding: clamp(48px, 7vw, 90px) 0; }
.section--soft { background: var(--bg-soft); }
.section--alt  { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #eaf0ff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .6rem;
}
.section--navy .eyebrow { color: var(--gold); }

.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--navy .section-head p { color: #c7d3f5; }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--green);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.btn svg { width: 18px; height: 18px; }
.btn--gold    { --btn-bg: var(--gold); --btn-fg: #3a2b00; }
.btn--blue    { --btn-bg: var(--blue); }
.btn--navy    { --btn-bg: var(--navy); }
.btn--outline { background: transparent; color: var(--green); }
.btn--outline:hover { background: var(--green); color: #fff; }
.btn--ghost-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.5);
}
.btn--ghost-light:hover { background: #fff; color: var(--navy); }

/* =========================================================
   Barra utilitária + Cabeçalho
   ========================================================= */
.topbar {
  background: var(--navy-deep);
  color: #c9d5f7;
  font-size: .82rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 38px; flex-wrap: wrap;
}
.topbar a { color: #dbe4ff; }
.topbar__info { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar__info span { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__info svg { width: 15px; height: 15px; flex: none; color: var(--gold); }
.topbar__social { display: flex; gap: .6rem; }
.topbar__social a {
  display: inline-flex; width: 26px; height: 26px; align-items: center;
  justify-content: center; border-radius: 50%; background: rgba(255,255,255,.1);
}
.topbar__social a:hover { background: var(--gold); color: var(--navy); }
.topbar__social svg { width: 14px; height: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand img { height: 52px; width: auto; border-radius: 8px; }
.brand__txt { font-family: var(--font-head); line-height: 1.05; }
.brand__txt strong { display: block; color: var(--navy); font-size: 1.15rem; letter-spacing: .02em; }
.brand__txt small { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; }

.main-nav ul {
  display: flex; align-items: center; gap: .3rem;
  list-style: none; margin: 0; padding: 0;
}
.main-nav a {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink);
  padding: .55rem .85rem;
  border-radius: 8px;
  text-decoration: none;
  transition: color .15s, background .15s;
}
.main-nav a:hover { color: var(--green); background: var(--bg-soft); }
.main-nav a.active { color: var(--green); }
.main-nav a.active::after {
  content: ""; display: block; height: 3px; border-radius: 3px;
  background: var(--gold); margin-top: 3px;
}
.header-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 10px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--navy);
  border-radius: 2px; position: relative; transition: .2s;
}
.nav-toggle span { margin: 0 auto; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

/* =========================================================
   Hero slider (4 últimas notícias)
   ========================================================= */
.hero { position: relative; background: var(--navy); }
.hero-slider { position: relative; overflow: hidden; }
.slides { position: relative; height: clamp(440px, 60vh, 580px); }
.slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .7s ease;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,20,63,.92) 0%, rgba(7,20,63,.65) 45%, rgba(7,20,63,.25) 100%);
}
/* fundo temporário quando não há imagem da notícia */
.slide[data-fallback="0"] { background-image: linear-gradient(120deg, var(--navy) 0%, var(--green-deep) 100%); }
.slide[data-fallback="1"] { background-image: linear-gradient(120deg, var(--green-deep) 0%, var(--green) 100%); }
.slide[data-fallback="2"] { background-image: linear-gradient(120deg, var(--navy-deep) 0%, var(--blue) 100%); }
.slide[data-fallback="3"] { background-image: linear-gradient(120deg, var(--green-deep) 0%, var(--navy) 100%); }

.slide__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin-inline: auto; width: 100%;
  padding: 0 20px 56px; color: #fff;
}
.slide__cat {
  display: inline-block; background: var(--gold); color: #3a2b00;
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 999px; margin-bottom: 1rem;
}
.slide__title {
  color: #fff; max-width: 720px;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem); margin-bottom: .6rem;
}
.slide__title a { color: #fff; text-decoration: none; }
.slide__title a:hover { text-decoration: underline; }
.slide__meta { color: #cdd8f5; font-size: .9rem; margin-bottom: 1.2rem; }
.slide__excerpt { color: #e7edff; max-width: 620px; margin-bottom: 1.4rem; }

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 48px; height: 48px; border-radius: 50%;
  border: 0; cursor: pointer; background: rgba(255,255,255,.15);
  color: #fff; display: grid; place-items: center; transition: background .2s;
  backdrop-filter: blur(4px);
}
.slider-btn:hover { background: var(--gold); color: var(--navy); }
.slider-btn.prev { left: 18px; }
.slider-btn.next { right: 18px; }
.slider-btn svg { width: 22px; height: 22px; }

.slider-dots {
  position: absolute; z-index: 5; bottom: 20px; left: 50%;
  transform: translateX(-50%); display: flex; gap: .5rem;
}
.slider-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.45); transition: .2s;
}
.slider-dots button.active { background: var(--gold); width: 30px; border-radius: 999px; }

/* =========================================================
   Quem somos (split)
   ========================================================= */
.about-split {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-media { position: relative; }
.about-media .logo-frame {
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: var(--shadow); text-align: center;
}
.about-media .logo-frame img { margin-inline: auto; max-width: 260px; }
.about-media .badge-float {
  position: absolute; bottom: -18px; right: -10px;
  background: var(--gold); color: #3a2b00; font-family: var(--font-head);
  font-weight: 700; padding: .7rem 1.1rem; border-radius: 12px;
  box-shadow: var(--shadow); font-size: .9rem;
}
.about-body h2 span { color: var(--green); }
.about-body p { color: var(--muted); font-size: 1.06rem; }
.about-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }

/* =========================================================
   Cards de atuação
   ========================================================= */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 1.1rem; color: #fff;
}
.card__icon svg { width: 26px; height: 26px; }
.card__icon.green { background: linear-gradient(135deg, var(--green), var(--green-bright)); }
.card__icon.blue  { background: linear-gradient(135deg, var(--blue), #38a0e8); }
.card__icon.navy  { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.card__icon.gold  { background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: #3a2b00; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* =========================================================
   Faixa de números / impacto
   ========================================================= */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem; text-align: center;
}
.stat__num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--gold); line-height: 1;
}
.stat__label { color: #cbd6f7; margin-top: .5rem; font-size: .98rem; }

/* =========================================================
   Grade de notícias
   ========================================================= */
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}
.news-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card__thumb {
  aspect-ratio: 16 / 10; background-size: cover; background-position: center;
  position: relative;
}
.news-card__thumb[data-fallback="0"] { background-image: linear-gradient(120deg, var(--navy), var(--blue)); }
.news-card__thumb[data-fallback="1"] { background-image: linear-gradient(120deg, var(--green-deep), var(--green-bright)); }
.news-card__thumb[data-fallback="2"] { background-image: linear-gradient(120deg, var(--gold-deep), var(--gold)); }
.news-card__cat {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.92); color: var(--green-deep);
  font-family: var(--font-head); font-weight: 600; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .25rem .6rem; border-radius: 999px;
}
.news-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.news-card__date { color: var(--muted); font-size: .82rem; margin-bottom: .5rem; }
.news-card__title { font-size: 1.12rem; margin-bottom: .5rem; }
.news-card__title a { color: var(--ink); text-decoration: none; }
.news-card__title a:hover { color: var(--green); }
.news-card__excerpt { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; flex: 1; }
.news-card__more {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--green);
  display: inline-flex; align-items: center; gap: .35rem;
}
.news-card__more:hover { text-decoration: none; gap: .55rem; }
.news-card__more svg { width: 16px; height: 16px; }
.breadcrumb svg { width: 15px; height: 15px; }

.loading-note { color: var(--muted); font-style: italic; }

/* =========================================================
   Faixa CTA
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--green-deep), var(--green));
  color: #fff; border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: .3rem; }
.cta-band p { color: #dff2e4; margin: 0; max-width: 560px; }

/* =========================================================
   Cabeçalho de páginas internas
   ========================================================= */
.page-hero {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 60%, var(--blue));
  color: #fff; padding: clamp(48px, 8vw, 90px) 0 clamp(40px, 6vw, 70px);
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #cdd8f5; max-width: 640px; font-size: 1.08rem; }
.breadcrumb {
  font-size: .85rem; color: #aebbe6; margin-bottom: 1rem;
  display: flex; gap: .4rem; align-items: center; flex-wrap: wrap;
}
.breadcrumb a { color: #dbe4ff; }
.breadcrumb span { opacity: .6; }

/* Conteúdo textual */
.prose { max-width: 820px; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; color: var(--green-deep); }
.prose p, .prose li { color: #3c4557; font-size: 1.04rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }
.prose .lead { font-size: 1.18rem; color: var(--ink); }

.chip-list { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.2rem 0; padding: 0; list-style: none; }
.chip-list li {
  background: var(--bg-soft); color: var(--green-deep); border: 1px solid #d7e6da;
  border-radius: 999px; padding: .45rem 1rem; font-size: .9rem; font-weight: 500;
}

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.4rem; }
.info-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem;
  background: #fff;
}
.info-card h3 { color: var(--navy); display: flex; align-items: center; gap: .6rem; }
.info-card .ic {
  width: 40px; height: 40px; border-radius: 10px; background: var(--bg-soft);
  color: var(--green); display: grid; place-items: center; flex: none;
}
.info-card .ic svg { width: 20px; height: 20px; }

/* Contato */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.2rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ic {
  width: 46px; height: 46px; flex: none; border-radius: 12px; color: #fff;
  display: grid; place-items: center; background: linear-gradient(135deg, var(--green), var(--green-bright));
}
.contact-list .ic svg { width: 22px; height: 22px; }
.contact-list strong { display: block; font-family: var(--font-head); }
.contact-list span { color: var(--muted); }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .92rem; margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; background: #fcfdfe; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(27,168,59,.15);
}
.form-note { font-size: .82rem; color: var(--muted); }

/* =========================================================
   Rodapé
   ========================================================= */
.site-footer { background: var(--navy-deep); color: #c3cff0; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem;
  padding: clamp(48px, 6vw, 72px) 0 2.5rem;
}
.footer-brand img { height: 64px; border-radius: 10px; margin-bottom: 1rem; background:#fff; padding:4px; }
.footer-brand p { color: #9fb0e0; font-size: .92rem; max-width: 320px; }
.footer-col h4 {
  color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-col a { color: #c3cff0; font-size: .94rem; }
.footer-col a:hover { color: var(--gold); text-decoration: none; }
.footer-contact li { display: flex; gap: .6rem; margin-bottom: .7rem; font-size: .92rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; margin-top: 3px; color: var(--gold); flex: none; }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #fff;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: #8fa1d4;
}
.footer-bottom a { color: #b9c6ee; }

/* =========================================================
   Página individual de notícia
   ========================================================= */
.article-hero .slide__cat { margin-bottom: 1rem; }
.article-meta { color: #cdd8f5; font-size: .95rem; }
.article-wrap { max-width: 840px; margin-inline: auto; }
.article-cover {
  width: 100%; border-radius: var(--radius); margin-bottom: 2rem;
  box-shadow: var(--shadow); aspect-ratio: 16 / 9; object-fit: cover;
}
.article-content { font-size: 1.06rem; }
.article-content > *:first-child { margin-top: 0; }
.article-content p, .article-content li { color: #3c4557; }
.article-content img { border-radius: var(--radius-sm); height: auto; margin: 1.4rem 0; }
.article-content figure { margin: 1.6rem 0; }
.article-content figcaption { color: var(--muted); font-size: .88rem; text-align: center; margin-top: .5rem; }
.article-content h2 { margin-top: 2rem; }
.article-content h3 { margin-top: 1.6rem; color: var(--green-deep); }
.article-content a { color: var(--blue); text-decoration: underline; }
.article-content ul, .article-content ol { padding-left: 1.4rem; }
.article-content li { margin-bottom: .4rem; }
.article-content blockquote {
  border-left: 4px solid var(--green); padding: .6rem 1.2rem; margin: 1.6rem 0;
  background: var(--bg-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink);
}
.article-share {
  display: flex; align-items: center; gap: .7rem; flex-wrap: wrap;
  margin: 2.2rem 0 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  font-family: var(--font-head); font-weight: 500;
}
.article-share a {
  display: inline-flex; padding: .45rem 1rem; border-radius: 999px;
  background: var(--bg-soft); color: var(--green-deep); text-decoration: none; font-size: .9rem;
}
.article-share a:hover { background: var(--green); color: #fff; }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-media { order: -1; max-width: 420px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    transform: translateY(-110%); visibility: hidden; pointer-events: none;
    transition: transform .25s ease, visibility .25s ease;
    box-shadow: var(--shadow-lg); max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    z-index: 90;
  }
  .nav-open .main-nav { transform: translateY(0); visibility: visible; pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: stretch; padding: .8rem; gap: .2rem; }
  .main-nav a { padding: .9rem 1rem; border-radius: 10px; }
  .main-nav a.active::after { display: none; }
  .main-nav a.active { background: var(--bg-soft); }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .slider-btn { width: 40px; height: 40px; }
  .slider-btn.prev { left: 8px; } .slider-btn.next { right: 8px; }
  .cta-band { flex-direction: column; align-items: flex-start; text-align: left; }
  .topbar__info { gap: .8rem; }
}
