/* =====================================================================
   SINDISERV â€” main.css
   Mobile-first. Tokens â†’ Reset â†’ Base â†’ Layout â†’ Components â†’ Sections
   ===================================================================== */

/* 1. Tokens ----------------------------------------------------------- */
:root {
  --c-green:      #1B4D3E;
  --c-green-dk:   #0f2e24;
  --c-green-lt:   #234f3f;
  --c-yellow:     #F5C200;
  --c-yellow-dk:  #d4a800;
  --c-dark:       #0d1117;
  --c-gray-800:   #1f2937;
  --c-gray-600:   #4b5563;
  --c-gray-400:   #9ca3af;
  --c-gray-200:   #e5e7eb;
  --c-gray-100:   #f3f4f6;
  --c-white:      #ffffff;

  --f-display:    'Montserrat', sans-serif;
  --f-body:       'Inter', sans-serif;

  --max-w:        1200px;
  --pad:          clamp(1.25rem, 5vw, 2rem);
  --radius:       12px;
  --radius-sm:    6px;

  --shadow-sm:    0 1px 2px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow:       0 4px 12px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:    0 16px 40px rgba(0,0,0,.1), 0 4px 8px rgba(0,0,0,.05);

  --ease:         cubic-bezier(.4, 0, .2, 1);
}

/* 2. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
html { scroll-behavior: smooth; }

/* 3. Base ------------------------------------------------------------- */
body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-dark);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-dark);
}

a { color: var(--c-green); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible {
  outline: 3px solid var(--c-yellow);
  outline-offset: 3px;
  border-radius: 3px;
}

/* 4. Layout ----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* 5. Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.875rem;
  border-radius: var(--radius-sm);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background .2s var(--ease),
    color .2s var(--ease),
    border-color .2s var(--ease),
    transform .15s var(--ease),
    box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--c-yellow);
  color: var(--c-dark);
  box-shadow: 0 4px 14px rgba(245,194,0,.35);
}
.btn-primary:hover {
  background: var(--c-yellow-dk);
  box-shadow: 0 8px 24px rgba(245,194,0,.45);
  color: var(--c-dark);
}

.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--c-white);
  color: var(--c-white);
}

.btn-outline-green {
  background: transparent;
  color: var(--c-green);
  border-color: var(--c-green);
}
.btn-outline-green:hover {
  background: var(--c-green);
  color: var(--c-white);
}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--c-green);
  border-top: 3px solid var(--c-yellow);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 24px rgba(0,0,0,.2);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header.is-scrolled {
  background: var(--c-green-dk);
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 10px 40px rgba(0,0,0,.45);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 70px;
  position: relative;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .site-header .container          { justify-content: center; }
  .site-header.has-logo .container { justify-content: space-between; }
}

/* ── Logo ── */
.site-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease, max-width .45s ease;
}
.site-logo img {
  display: block;
  height: 46px;
  width: auto;
  max-width: none;
}

.site-header.has-logo .site-logo {
  max-width: 264px;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .site-logo {
    position: absolute;
    left: var(--pad);
    top: 50%;
    transform: translateY(-50%);
    max-width: none;
    overflow: visible;
    transition: opacity .4s ease;
  }
  .site-header.has-logo .site-logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    max-width: none;
  }
}

.logo-wordmark { line-height: 1; }
.logo-name {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.1875rem;
  letter-spacing: .1em;
  color: var(--c-white);
}
.logo-sub {
  display: block;
  font-size: .5625rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
}

/* ── Hamburger ── */
.nav-toggle {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background .18s;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform .28s var(--ease), opacity .28s, width .28s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav mobile — slide-down ── */
@media (max-width: 1023px) {
  .site-nav {
    display: block;
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    z-index: 299;
    background: var(--c-green-dk);
    border-top: 1px solid rgba(255,255,255,.07);
    overflow: hidden;
    max-height: 0;
    transition: max-height .38s cubic-bezier(.4,0,.2,1);
  }

  .site-nav.is-open { max-height: 28rem; }

  .site-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: .375rem var(--pad) 0;
  }

  .site-nav ul li { border-bottom: 1px solid rgba(255,255,255,.05); }
  .site-nav ul li:last-child { border-bottom: none; }

  .site-nav ul a:not(.btn) {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.68);
    font-family: var(--f-display);
    font-weight: 600;
    font-size: .875rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .9rem .25rem;
    text-decoration: none;
    transition: color .2s, gap .2s;
  }
  .site-nav ul a:not(.btn)::before {
    content: '';
    display: block;
    width: 14px;
    height: 2px;
    background: var(--c-yellow);
    border-radius: 2px;
    flex-shrink: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s var(--ease);
  }
  .site-nav ul a:not(.btn):hover,
  .site-nav .current-menu-item > a:not(.btn) {
    color: var(--c-white);
    gap: .875rem;
    text-decoration: none;
  }
  .site-nav ul a:not(.btn):hover::before,
  .site-nav .current-menu-item > a:not(.btn)::before { transform: scaleX(1); }

  .nav-cta-btn {
    display: block;
    margin: 1rem var(--pad) 1.25rem;
    text-align: center;
    font-size: .9375rem;
    padding: 1rem;
    justify-content: center;
  }
}

/* ── Nav desktop ── */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .site-nav {
    display: flex !important;
    align-items: center;
  }

  .site-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .25rem;
    margin: 0;
    padding: 0;
  }

  .site-nav ul li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .site-nav ul a {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,.7);
    font-family: var(--f-display);
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .5rem .875rem;
    text-decoration: none;
    transition: color .2s;
  }
  .site-nav ul a::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: .875rem;
    right: .875rem;
    height: 2px;
    background: var(--c-yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s var(--ease);
  }
  .site-nav ul a:hover                      { color: var(--c-white); text-decoration: none; }
  .site-nav ul a:hover::after               { transform: scaleX(1); }
  .site-nav .current-menu-item > a          { color: var(--c-white); }
  .site-nav .current-menu-item > a::after   { transform: scaleX(1); }

  .nav-cta-btn {
    margin-left: 1.5rem;
    padding: .625rem 1.375rem;
    font-size: .75rem;
  }
}

/* =====================================================================
   HERO — animations
   ===================================================================== */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes heroFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-label        { animation: heroUp .6s var(--ease) .1s  both; }
.hero-logo-center  { animation: heroUp .7s var(--ease) .25s both; }
.hero h1           { animation: heroUp .7s var(--ease) .4s  both; }
.hero-sub          { animation: heroUp .6s var(--ease) .55s both; }
.hero-actions      { animation: heroUp .6s var(--ease) .7s  both; }
.hero-stats        { animation: heroFade .8s var(--ease) .9s both; }

@media (prefers-reduced-motion: reduce) {
  .hero-label, .hero-logo-center, .hero h1,
  .hero-sub, .hero-actions, .hero-stats {
    animation: none;
    opacity: 1;
  }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  background: var(--c-green-dk);
  overflow: hidden;
  padding-top: 6rem;
}

/* Mosaico de fotos como fundo */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  z-index: 0;
}

.hero-bg-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

/* Overlay verde escuro sobre o mosaico */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 46, 36, 0.91) 0%,
    rgba(27, 77, 62, 0.84) 50%,
    rgba(15, 46, 36, 0.91) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Anel decorativo sutil */
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(245,194,0,.07);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

/* Container acima do overlay */
.hero .container {
  position: relative;
  z-index: 3;
}

/* Logo centralizada no hero */
.hero-logo-center {
  display: block;
  width: min(390px, 80vw);
  height: auto;
  margin: 0 auto 2.5rem;
}

.hero-inner {
  padding-bottom: 4.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--f-display);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: 2rem;
}
.hero-label::before,
.hero-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-yellow);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: 1.625rem;
  max-width: 14ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--c-yellow);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--c-yellow);
  border-radius: 2px;
  opacity: .35;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,.68);
  max-width: 48ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  justify-content: center;
}

/* Faixa de estatisticas */
.hero-stats {
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-stat {
  padding: 1.75rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--c-yellow);
  line-height: 1;
  margin-bottom: .375rem;
  letter-spacing: -.02em;
}
.hero-stat-num sup {
  font-size: .45em;
  vertical-align: super;
  margin-left: .05em;
  font-weight: 700;
}
.hero-stat-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* =====================================================================
   SECTION — commons
   ===================================================================== */
.section { padding: 6rem 0; }
.section-alt { background: var(--c-gray-100); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--f-display);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-yellow);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-heading {
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 3.5rem;
}
.section-heading span { color: var(--c-green); }

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.section-header-row .section-heading { margin-bottom: 0; }

/* =====================================================================
   BENEFÃCIOS
   ===================================================================== */
.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}
@media (min-width: 600px)  { .beneficios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .beneficios-grid { grid-template-columns: repeat(3, 1fr); } }

.beneficio-card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 2rem;
  border: 1px solid var(--c-gray-200);
  overflow: hidden;
  transition:
    box-shadow .25s var(--ease),
    transform .25s var(--ease),
    border-color .25s var(--ease);
}

/* Borda inferior amarela â€” aparece no hover */
.beneficio-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s var(--ease);
}

.beneficio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.beneficio-card:hover::after { transform: scaleX(1); }

.beneficio-icon {
  width: 52px;
  height: 52px;
  background: var(--c-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  margin-bottom: 1.375rem;
  flex-shrink: 0;
}
.beneficio-icon svg { width: 26px; height: 26px; }

.beneficio-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--c-dark);
}
.beneficio-card p {
  font-size: .9375rem;
  color: var(--c-gray-600);
  line-height: 1.65;
}

/* =====================================================================
   NOTÃCIAS RECENTES
   ===================================================================== */
.noticias-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .noticias-grid {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr 1fr;
  }
  .noticia-card:first-child { grid-row: span 2; }
  .noticia-card:first-child .noticia-img-wrap,
  .noticia-card:first-child .noticia-img-placeholder { height: 260px; }
  .noticia-card:first-child .noticia-body { padding: 1.75rem; }
  .noticia-card:first-child .noticia-title { font-size: 1.25rem; }
  .noticia-card:first-child .noticia-excerpt { -webkit-line-clamp: 4; }
}

.noticia-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease);
}
.noticia-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.noticia-img-wrap { display: block; overflow: hidden; }
.noticia-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.noticia-card:hover .noticia-img { transform: scale(1.03); }

.noticia-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
}
.noticia-img-placeholder svg { width: 40px; height: 40px; }

.noticia-body {
  padding: 1.375rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}

.noticia-meta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gray-400);
}
.noticia-meta::before {
  content: '';
  display: block;
  width: 14px;
  height: 2px;
  background: var(--c-yellow);
  border-radius: 2px;
  flex-shrink: 0;
}

.noticia-title {
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
.noticia-title a {
  color: var(--c-dark);
  text-decoration: none;
  transition: color .18s;
}
.noticia-title a:hover { color: var(--c-green); text-decoration: none; }

.noticia-excerpt {
  font-size: .875rem;
  color: var(--c-gray-600);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.noticia-link {
  margin-top: auto;
  padding-top: .875rem;
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--c-green);
  text-decoration: none;
  transition: gap .18s var(--ease);
}
.noticia-link:hover { gap: .625rem; text-decoration: none; }
.noticia-link svg { width: 14px; height: 14px; }

.sem-posts {
  color: var(--c-gray-400);
  font-size: .9375rem;
  padding: 2.5rem 0;
}

/* =====================================================================
   CTA FILIAÃ‡ÃƒO
   ===================================================================== */
.cta-filiacao {
  position: relative;
  background: var(--c-green);
  overflow: hidden;
}

/* AnÃ©is decorativos espelhados */
.cta-filiacao::before,
.cta-filiacao::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-filiacao::before {
  right: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(245,194,0,.07);
}
.cta-filiacao::after {
  right: -50px;
  bottom: -50px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(245,194,0,.05);
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-inner { grid-template-columns: 1fr auto; gap: 5rem; }
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--f-display);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: 1.25rem;
}
.cta-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-yellow);
  flex-shrink: 0;
}

.cta-text h2 {
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 1.125rem;
}

.cta-text p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  max-width: 46ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
}

/* Caixa da taxa */
.cta-aside {
  flex-shrink: 0;
  text-align: center;
}

.taxa-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 2.25rem 2.75rem;
  margin-bottom: 1rem;
}

.taxa-valor {
  display: block;
  font-family: var(--f-display);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--c-yellow);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: .25rem;
}
.taxa-valor sup {
  font-size: .35em;
  vertical-align: super;
  font-weight: 700;
}
.taxa-unidade {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.taxa-detalhe {
  display: block;
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  margin-top: .5rem;
}
.taxa-nota {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  max-width: 22ch;
  margin-inline: auto;
  line-height: 1.5;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  background: var(--c-green-dk);
  color: rgba(255,255,255,.5);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1.25fr; gap: 5rem; } }

.footer-brand .site-logo {
  text-decoration: none;
  margin-bottom: 1.25rem;
  display: inline-flex;
  max-width: none;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
  position: static;
  transform: none;
  transition: none;
}
.footer-brand .logo-name { font-size: 1.25rem; }
.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: .75rem;
}
.footer-slogan {
  font-size: .8rem;
  font-style: italic;
  color: rgba(255,255,255,.3);
}

.footer-heading {
  font-family: var(--f-display);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.5rem;
}

.footer-nav ul { list-style: none; }
.footer-nav a {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  line-height: 2.4;
  text-decoration: none;
  transition: color .18s;
}
.footer-nav a:hover { color: var(--c-yellow); text-decoration: none; }

.footer-contact p {
  font-size: .875rem;
  line-height: 1.55;
  margin-bottom: .875rem;
}
.footer-contact strong {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: .1rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
}

/* =====================================================================
   PÃGINAS INTERNAS
   ===================================================================== */
.page-banner {
  background: var(--c-green);
  padding: 4.5rem 0 4rem;
}
.page-banner h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -.025em;
}
.page-banner .breadcrumb {
  margin-top: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.page-banner .breadcrumb a {
  color: rgba(255,255,255,.55);
  transition: color .18s;
}
.page-banner .breadcrumb a:hover { color: var(--c-yellow); }

.page-body { padding: 4rem 0; }

/* ── Notícias — arquivo ──────────────────────────────────────────── */
.noticias-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .noticias-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .noticias-archive-grid { grid-template-columns: repeat(3, 1fr); } }

.page-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.page-pagination .nav-links { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.page-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-gray-200);
  font-size: .875rem;
  font-weight: 600;
  color: var(--c-gray-600);
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s;
}
.page-pagination .page-numbers:hover { background: var(--c-green); color: var(--c-white); border-color: var(--c-green); text-decoration: none; }
.page-pagination .page-numbers.current { background: var(--c-green); color: var(--c-white); border-color: var(--c-green); }

.sem-conteudo {
  text-align: center;
  padding: 4rem 0;
}
.sem-conteudo-msg {
  font-size: 1.0625rem;
  color: var(--c-gray-600);
  margin: 1rem 0 2rem;
}

/* ── Convenção Coletiva ──────────────────────────────────────────── */
/* Filiação */
.filiacao-btn { margin-top: .5rem; margin-bottom: 2rem; }
.filiacao-iframe-label {
  font-size: .8125rem;
  color: var(--c-gray-400);
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}
.filiacao-iframe {
  display: block;
  width: 100%;
  height: 700px;
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}
@media (max-width: 767px) { .filiacao-iframe { height: 520px; } }

.convencao-intro { margin-bottom: 3.5rem; }

.convencao-pdf-block { margin-bottom: 4rem; }

.convencao-pdf-titulo {
  font-size: 1.5rem;
  font-weight: 700;
  margin: .5rem 0 1.5rem;
}

.convencao-iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius);
}

.convencao-pdf-actions { margin-top: 1.25rem; }

.convencao-historico { margin-top: 1rem; }

.convencao-historico-titulo {
  font-size: 1.5rem;
  font-weight: 700;
  margin: .5rem 0 1.75rem;
}

.convencao-table-wrap {
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius);
  overflow-x: auto;
}

.convencao-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9375rem;
}
.convencao-table thead tr {
  background: var(--c-gray-100);
  border-bottom: 2px solid var(--c-gray-200);
}
.convencao-table th {
  text-align: left;
  padding: .875rem 1.25rem;
  font-family: var(--f-display);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gray-600);
}
.convencao-table td {
  padding: 1rem 1.25rem;
  color: var(--c-gray-800);
  border-bottom: 1px solid var(--c-gray-200);
  vertical-align: middle;
}
.convencao-table tbody tr:last-child td { border-bottom: none; }
.convencao-table tbody tr:hover { background: var(--c-gray-100); }
.convencao-td-ano {
  font-weight: 700;
  color: var(--c-dark);
  white-space: nowrap;
}
.convencao-baixar {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-weight: 600;
  font-size: .8125rem;
  color: var(--c-green);
  text-decoration: none;
  transition: color .18s;
}
.convencao-baixar:hover { color: var(--c-green-dk); text-decoration: none; }

.prose {
  max-width: 72ch;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--c-gray-800);
}
.prose h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; color: var(--c-dark); }
.prose h3 { margin: 2rem 0 .75rem; font-size: 1.1875rem; }
.prose p  { margin-bottom: 1.25rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: .5rem; }

/* Sobre */
.sobre-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) { .sobre-intro { grid-template-columns: 3fr 2fr; } }

.sobre-texto h2 { margin-bottom: 1.25rem; }
.sobre-texto p  { color: var(--c-gray-600); line-height: 1.8; margin-bottom: 1rem; }
.sobre-slogan {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-green);
  border-left: 4px solid var(--c-yellow);
  padding-left: 1.25rem;
  margin-top: 2rem;
  font-style: normal;
}

.sobre-dados { display: flex; flex-direction: column; gap: 1rem; }
.dado-card {
  background: var(--c-gray-100);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.dado-numero {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .875rem;
  color: var(--c-gray-400);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dado-label {
  font-size: .9375rem;
  color: var(--c-dark);
  font-weight: 500;
}

.sobre-atuacao { background: var(--c-gray-100); }
.sobre-missao  { padding: 5rem 0; }
.sobre-conteudo { padding: 2rem 0 5rem; }

.atuacao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .atuacao-grid { grid-template-columns: repeat(2, 1fr); } }

.atuacao-item {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--c-gray-200);
  border-left: 4px solid var(--c-green);
}
.atuacao-item h3 { margin-bottom: .75rem; font-size: 1.0625rem; }
.atuacao-item p  { color: var(--c-gray-600); font-size: .9375rem; line-height: 1.7; }

/* Listas de posts */
.post-item {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--c-gray-200);
}
.post-item:last-child { border-bottom: none; }
.post-item h2 { font-size: 1.375rem; margin-bottom: .375rem; }
.post-item h2 a { color: var(--c-dark); }
.post-item h2 a:hover { color: var(--c-green); text-decoration: none; }
.post-meta {
  font-size: .8125rem;
  color: var(--c-gray-400);
  margin-bottom: .75rem;
}

/* =====================================================================
   SCROLL ANIMATIONS — homepage body #main only
   ===================================================================== */
.home #main .anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity  .65s cubic-bezier(.22, .61, .36, 1),
    transform .65s cubic-bezier(.22, .61, .36, 1);
}

.home #main .anim-up.anim-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .home #main .anim-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =====================================================================
   RESPONSIVE — targeted mobile overrides
   ===================================================================== */

/* 2-col page layout (filiação, contato) */
.page-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .page-two-col { grid-template-columns: 2fr 1fr; gap: 4rem; }
}

/* Reduce generous section padding on small screens */
@media (max-width: 767px) {
  .section          { padding: 3.5rem 0; }
  .cta-inner        { padding: 3.5rem 0; }
  .page-banner      { padding: 2.75rem 0 2.25rem; }
  .page-body        { padding: 2.5rem 0; }
  .site-footer      { padding-top: 3rem; }
  .footer-grid      { padding-bottom: 2.5rem; }
}

/* Hero: smaller logo and tighter top padding on phones */
@media (max-width: 599px) {
  .hero       { padding-top: 3.5rem; }
  .hero-inner { padding-bottom: 3rem; }

  /* Stats: stack in a single column on very small screens */
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 1.25rem 1rem;
  }
  .hero-stat:last-child { border-bottom: none; }
}

/* Convenção: shorter iframe on mobile */
@media (max-width: 767px) {
  .convencao-iframe { height: 380px; }
}

/* Buttons: allow full-width stacking on very small screens */
@media (max-width: 479px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-buttons  { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* Section header row: stack on mobile */
@media (max-width: 599px) {
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }
}

/* Notícias grid featured card: no special layout on mobile */
@media (max-width: 767px) {
  .noticias-grid { grid-template-columns: 1fr; }
  .noticia-card:first-child { grid-row: auto; }
}

/* CTA taxa box: full width on mobile */
@media (max-width: 767px) {
  .taxa-box { padding: 1.75rem 1.5rem; }
  .taxa-valor { font-size: 3.5rem; }
}

/* Footer bottom: center on mobile */
@media (max-width: 599px) {
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
