/* ============================================================
   SindiSistema — Estilos globais
   Aplicados em todas as páginas do site
   Softguia Desenvolvimento Web · softguia.com.br
   ============================================================ */

/* ── VARIÁVEIS ── */
:root {
  --default-font: "Roboto", system-ui, sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Raleway", sans-serif;
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #1c2b3a;
  --brand-color: #b60707;
  --accent-color: var(--brand-color); /* alias legado */
  --brand-dark: #8a0505;
  --red-dark: var(--brand-dark); /* alias legado */
  --brand-light: #fce8e8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #1c2b3a;
  --nav-hover-color: var(--brand-color);
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: var(--brand-color);
  scroll-behavior: smooth;
}

/* ── BASE ── */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  padding-top: 0;
}
a { color: var(--brand-color); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--brand-dark); text-decoration: none; }
h1,h2,h3,h4,h5,h6 { color: var(--heading-color); font-family: var(--heading-font); }

/* ── STICKY WRAPPER ── */
.sticky-top-group {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.15);
}
.main { margin-top: var(--sticky-height, 130px); }

/* ── TOPBAR ── */
.topbar {
  background: var(--brand-color);
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255,255,255,.9);
}
.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: #fff; }
.topbar .topbar-left span { margin-right: 18px; }
.topbar .topbar-left i { margin-right: 4px; }
.topbar .btn-contribuicoes {
  background: #fff;
  color: var(--brand-color);
  padding: 6px 18px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.topbar .btn-contribuicoes:hover { background: #f0f0f0; color: var(--brand-color); }

/* ── HEADER ── */
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 12px 0;
  transition: all 0.5s;
  border-bottom: 3px solid var(--brand-color);
}
.header .logo-img { max-height: 64px; width: auto; }
.header .logo img { max-height: 58px; }
.header .logo h1 { font-size: 26px; margin: 0; font-weight: 800; color: var(--brand-color); }
.header .logo span { display: block; font-size: 10px; color: #888; letter-spacing: .1em; text-transform: uppercase; font-weight: 400; font-family: var(--default-font); }
.header .header-social-links { padding-right: 15px; }
.header .header-social-links a { color: #8a9099; padding-left: 8px; font-size: 16px; }
.header .header-social-links a:hover { color: var(--brand-color); }

/* ── NAVMENU — Desktop ── */
@media (min-width:1200px) {
  .navmenu { padding: 0; }
  .navmenu ul { margin:0; padding:0; display:flex; list-style:none; align-items:center; }
  .navmenu li { position:relative; }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-color); padding: 16px 14px;
    font-size: 14px; font-family: var(--nav-font); font-weight: 600;
    display: flex; align-items: center; justify-content: space-between;
    white-space: nowrap; transition: 0.3s; text-transform: uppercase; letter-spacing: .04em;
  }
  .navmenu a i { font-size:11px; margin-left:4px; }
  .navmenu li:last-child a { padding-right: 0; }
  .navmenu li:hover>a, .navmenu .active, .navmenu .active:focus { color: var(--nav-hover-color); }
  .navmenu .dropdown ul {
    margin:0; padding:10px 0;
    background: var(--nav-dropdown-background-color);
    display:block; position:absolute; visibility:hidden;
    left:14px; top:130%; opacity:0; transition:0.3s;
    border-radius:4px; z-index:99;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    border-top: 3px solid var(--brand-color);
  }
  .navmenu .dropdown ul li { min-width:200px; }
  .navmenu .dropdown ul a {
    padding:10px 20px; font-size:13px; text-transform:none;
    color:var(--nav-dropdown-color); font-weight:500;
  }
  .navmenu .dropdown ul a:hover, .navmenu .dropdown ul li:hover>a { color:var(--nav-dropdown-hover-color); }
  .navmenu .dropdown:hover>ul { opacity:1; top:100%; visibility:visible; }
}

/* ── NAVMENU — Mobile ── */
@media (max-width:1199px) {
  .mobile-nav-toggle {
    color:var(--nav-color); font-size:26px; line-height:0;
    cursor:pointer; padding:4px; border-radius:4px; background:transparent; border:none;
  }
  .navmenu ul { display:none; }
}

/* ── BOTÃO FILIE-SE NO NAV ── */
.navmenu .nav-filiacao a {
  background: var(--brand-color) !important;
  color: #fff !important;
  border-radius: 4px;
  padding: 8px 14px !important;
  margin-left: 6px;
}
.navmenu .nav-filiacao a:hover { background: var(--brand-color) !important; opacity: .85; }

/* ── FLOATING NOTICE ── */
.floating-notice {
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
  padding: 11px 0;
  text-align: center;
  font-size: 14px;
  color: var(--brand-color);
  font-weight: 700;
  letter-spacing: .02em;
  border-top: 2px solid #d97706;
  border-bottom: 2px solid #d97706;
}
.floating-notice .fn-flag {
  background: var(--brand-color); color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 3px 10px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: .08em;
  margin-right: 12px; vertical-align: middle;
}
.floating-notice a { color: var(--brand-color); font-weight: 800; text-decoration: underline; }
.floating-notice a:hover { color: var(--brand-dark); }
.floating-notice .fn-close {
  cursor:pointer; opacity:.5; margin-left:20px; font-size:16px;
  vertical-align: middle; background:none; border:none; color: var(--brand-color);
}
.floating-notice .fn-close:hover { opacity:1; }

/* ── SECTION TITLE ── */
.section-title { text-align:center; padding:30px 0; margin-bottom:30px; position:relative; }
.section-title h2 { font-size:30px; font-weight:700; text-transform:uppercase; margin-bottom:16px; position:relative; z-index:2; }
.section-title .description-title {
  display:inline-block; font-size:11px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--brand-color); margin-bottom:8px;
  padding-bottom:8px; border-bottom:2px solid var(--brand-color);
}
.section-title p { margin-bottom:0; position:relative; z-index:2; color:#666; font-size:14px; }

/* ── FOOTER ── */
.footer {
  background: #0f0f0f;
  color:#aaa; font-size:14px;
  padding:60px 0 0;
}
.footer .footer-brand .sitename { font-family:var(--heading-font); font-size:22px; font-weight:800; color:#fff; }
.footer .footer-brand .sitename span { color:var(--brand-color); }
.footer .footer-brand .tagline { font-size:13px; color:#666; margin-top:8px; line-height:1.6; }
.footer .social-links { margin-top:16px; display:flex; gap:8px; }
.footer .social-links a {
  width:34px; height:34px; border-radius:50%;
  border:1px solid #333; display:flex; align-items:center; justify-content:center;
  color:#777; font-size:14px; transition:.3s;
}
.footer .social-links a:hover { border-color:var(--brand-color); color:var(--brand-color); }
.footer .footer-action-buttons {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  max-width: 220px;
}
.footer .footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: .25s;
}
.footer .footer-action-primary {
  background: var(--brand-color);
  color: #fff;
  border: 1px solid var(--brand-color);
}
.footer .footer-action-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}
.footer .footer-action-light {
  background: transparent;
  color: #f1f1f1;
  border: 1px solid #333;
}
.footer .footer-action-light:hover {
  border-color: var(--brand-color);
  color: #fff;
  background: rgba(3,158,227,.16);
}

.footer .footer-links-grid h5 {
  font-size:14px; font-weight:700; color:#fff; text-transform:uppercase;
  letter-spacing:.06em; margin-bottom:16px; padding-bottom:8px;
  border-bottom:2px solid var(--brand-color); width:fit-content;
}
.footer .footer-links-grid ul { list-style:none; padding:0; margin:0; }
.footer .footer-links-grid ul li { padding:4px 0; }
.footer .footer-links-grid ul li a { color:#777; font-size:13px; transition:.2s; }
.footer .footer-links-grid ul li a:hover { color:var(--brand-color); padding-left:4px; }
.footer .footer-contact-info { font-size:13px; color:#777; }
.footer .footer-contact-info p { margin-bottom:6px; display:flex; align-items:flex-start; gap:8px; }
.footer .footer-contact-info i { color:var(--brand-color); margin-top:2px; flex-shrink:0; }
.footer .footer-bottom { margin-top:40px; border-top:1px solid #1e1e1e; padding:18px 0; }
.footer .footer-bottom-content {
  display:flex; align-items:center; justify-content:space-between;
  font-size:12px; color:#555; flex-wrap:wrap; gap:8px;
}
.footer .footer-bottom-content a { color:#666; }
.footer .footer-bottom-content a:hover { color:var(--brand-color); }

/* ── SCROLL TOP ── */
.scroll-top {
  position:fixed; visibility:hidden; opacity:0;
  right:24px; bottom:24px; z-index:99999;
  background-color:var(--brand-color); width:40px; height:40px;
  border-radius:50%; transition:all .4s; color:#fff;
}
.scroll-top i { font-size:22px; }
.scroll-top:hover { background-color:var(--brand-dark); color:#fff; }
.scroll-top.active { visibility:visible; opacity:1; }

/* ── UTILITÁRIOS ── */
.section { padding:70px 0; }

/* ============================================================
   Ajustes mobile/header — SITE_022
   ============================================================ */
.topbar-content {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.topbar-left,
.topbar-right,
.topbar-social,
.topbar-actions {
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.topbar-left span { margin-right:0 !important; }
.topbar .btn-filie-top,
.topbar .btn-contribuicoes {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:7px 18px;
  border-radius:3px;
  font-weight:800;
  font-size:13px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.topbar .btn-filie-top {
  background:var(--brand-dark);
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
}
.topbar .btn-filie-top:hover { background:#700404; color:#fff; }
.topbar .btn-contribuicoes {
  background:#fff;
  color:var(--brand-color);
}
.topbar .btn-contribuicoes:hover { background:#f5f5f5; color:var(--brand-color); }

@media (max-width:1199px) {
  .header .container {
    min-height:86px;
  }
  .header .logo {
    max-width:72%;
  }
  .header .logo-img,
  .header .logo img {
    max-height:62px;
    width:auto;
  }
  .navmenu {
    margin-left:auto;
    position:static;
  }
  .mobile-nav-toggle {
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border-radius:10px;
    color:var(--heading-color);
    background:#fff;
    border:1px solid #e6e6e6;
    box-shadow:0 4px 14px rgba(0,0,0,.06);
    z-index:1002;
  }
  .navmenu > ul {
    display:none;
    position:absolute;
    top:calc(100% + 3px);
    left:12px;
    right:12px;
    width:auto;
    margin:0;
    padding:14px 0;
    list-style:none;
    background:#fff;
    border-radius:0 0 16px 16px;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
    border-top:3px solid var(--brand-color);
    z-index:1001;
  }
  .mobile-nav-active .navmenu > ul {
    display:block !important;
  }
  .navmenu > ul > li {
    display:block;
    width:100%;
    list-style:none;
  }
  .navmenu a,
  .navmenu a:focus {
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding:12px 22px;
    color:var(--nav-color);
    font-family:var(--nav-font);
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.03em;
    border-bottom:1px solid #f0f0f0;
  }
  .navmenu > ul > li:last-child > a { border-bottom:none; }
  .navmenu .dropdown ul {
    display:none;
    position:static;
    visibility:visible;
    opacity:1;
    margin:0;
    padding:0;
    background:#fafafa;
    box-shadow:none;
    border-top:0;
    border-radius:0;
  }
  .navmenu .dropdown ul li { min-width:0; }
  .navmenu .dropdown ul a {
    padding:10px 34px;
    font-size:13px;
    text-transform:none;
    font-weight:600;
    color:#444;
  }
}

@media (max-width:767px) {
  .topbar {
    padding:8px 0;
    font-size:13px;
  }
  .topbar-content {
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
  .topbar-left {
    width:100%;
    display:grid;
    grid-template-columns:1fr;
    gap:4px;
    line-height:1.35;
  }
  .topbar-left span {
    display:block;
    margin:0;
  }
  .topbar-hours { display:none !important; }
  .topbar-right {
    width:100%;
    justify-content:space-between;
    gap:10px;
  }
  .topbar-actions {
    margin-left:auto;
    gap:8px;
  }
  .topbar .btn-filie-top,
  .topbar .btn-contribuicoes {
    min-height:36px;
    padding:8px 12px;
    font-size:12px;
  }
  .topbar-social {
    gap:14px;
    font-size:18px;
  }
  .floating-notice {
    font-size:13px;
    line-height:1.45;
    padding:10px 0;
  }
  .floating-notice .container {
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:5px 8px;
  }
  .floating-notice .fn-flag {
    margin-right:0;
  }
}

/* Números da home também no CSS global para evitar falha visual por cache/ordem de carregamento */
.home-numeros-sindicato {
  background:var(--brand-color) !important;
  color:#fff !important;
  position:relative;
  z-index:3;
}
.numeros-home-grid {
  display:grid !important;
  grid-template-columns:repeat(4, 1fr);
}
.num-home-item {
  padding:28px 20px !important;
  text-align:center !important;
  border-right:1px solid rgba(255,255,255,.18);
}
.num-home-item:last-child { border-right:none; }
.num-home-val {
  font-family:var(--heading-font) !important;
  font-size:clamp(30px, 4vw, 44px) !important;
  font-weight:800 !important;
  line-height:1 !important;
  margin-bottom:6px !important;
  color:#fff !important;
}
.num-home-val span {
  font-size:22px !important;
  vertical-align:super;
  font-weight:700;
}
.num-home-label {
  font-size:12px !important;
  font-weight:700 !important;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(255,255,255,.78) !important;
}
@media (max-width:991px) {
  .numeros-home-grid { grid-template-columns:repeat(2, 1fr) !important; }
  .num-home-item:nth-child(2) { border-right:none; }
  .num-home-item:nth-child(1),
  .num-home-item:nth-child(2) { border-bottom:1px solid rgba(255,255,255,.18); }
}
@media (max-width:575px) {
  .num-home-item { padding:20px 10px !important; }
  .num-home-label { font-size:10px !important; }
}


/* ============================================================
   Ajustes banner/topbar — SITE_023
   ============================================================ */
.floating-notice .container {
  position: relative;
  padding-right: 54px;
}
.floating-notice .fn-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  color: var(--brand-dark);
  opacity: .9;
  line-height: 1;
}
.floating-notice .fn-close:hover {
  background: rgba(255,255,255,.65);
  opacity: 1;
}
@media (max-width:767px) {
  .floating-notice .container {
    padding-right: 48px;
  }
  .floating-notice .fn-close {
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
}


/* ============================================================
   Correções rápidas — SITE_023b
   ============================================================ */
.floating-notice .fn-close {
  z-index: 3;
  flex: 0 0 auto;
}
.floating-notice .fn-close i {
  display: block;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 767px) {
  .topbar-actions .btn-filie-top,
  .topbar-actions .btn-contribuicoes {
    white-space: nowrap;
  }
}


/* ============================================================
   Inner hero global — SITE_026
   Usado por páginas dinâmicas, estáticas, filiação e galeria
   ============================================================ */
.page-hero-public {
  --hero-bg: url('../img/hero01.png');
  background-image:
    linear-gradient(135deg, rgba(8,8,8,.82) 0%, rgba(31,7,7,.84) 58%, rgba(83,5,5,.86) 100%),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color:#fff;
  padding:58px 0 52px;
  position:relative;
  overflow:hidden;
  min-height:300px;
  display:flex;
  align-items:center;
}
.page-hero-public::before {
  content:'';
  position:absolute;
  inset:0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 32px, rgba(255,255,255,.026) 32px, rgba(255,255,255,.026) 33px);
  pointer-events:none;
}
.page-hero-public::after {
  content:'';
  position:absolute;
  right:-120px;
  top:-90px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:rgba(3,158,227,.22);
  filter:blur(4px);
}
.page-hero-public .container { position:relative; z-index:2; }
.page-hero-public .section-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--brand-color);
  color:#fff;
  padding:6px 14px;
  border-radius:3px;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:14px;
}
.page-hero-public h1 {
  color:#fff;
  font-size:clamp(30px, 4vw, 42px);
  font-weight:800;
  line-height:1.1;
  margin:0 0 10px;
  max-width:860px;
}
.page-hero-public p {
  max-width:760px;
  color:rgba(255,255,255,.74);
  font-size:15px;
  line-height:1.7;
  margin:0;
}
.breadcrumb-public {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.55);
  font-size:13px;
  margin-bottom:14px;
}
.breadcrumb-public a { color:rgba(255,255,255,.85); }
.breadcrumb-public a:hover { color:#fff; }
@media (max-width: 767px) {
  .page-hero-public { min-height:260px; padding:44px 0 40px; }
  .page-hero-public h1 { font-size:28px; }
}


/* ============================================================
   Botões do topo com ícones — SITE_029
   ============================================================ */
.topbar .topbar-actions {
  gap: 10px;
}
.topbar .topbar-cta,
.topbar .topbar-actions .topbar-cta,
.topbar .btn-filie-top,
.topbar .btn-contribuicoes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.28);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .055em;
  box-shadow: 0 7px 18px rgba(0,0,0,.12);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}
.topbar .topbar-cta i {
  font-size: 14px;
  line-height: 1;
}
.topbar .topbar-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 45%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .45s ease;
}
.topbar .topbar-cta:hover::before {
  transform: translateX(120%);
}
.topbar .topbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.topbar .topbar-cta span,
.topbar .topbar-cta i {
  position: relative;
  z-index: 1;
}
.topbar .topbar-cta-filie,
.topbar .topbar-actions .topbar-cta-filie {
  background: #8f0505;
  color: #fff;
  border-color: rgba(255,255,255,.34);
}
.topbar .topbar-cta-filie:hover,
.topbar .topbar-actions .topbar-cta-filie:hover {
  background: #650303;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.topbar .topbar-cta-contribuicoes,
.topbar .topbar-actions .topbar-cta-contribuicoes {
  background: #fff;
  color: var(--brand-color);
  border-color: #fff;
}
.topbar .topbar-cta-contribuicoes:hover,
.topbar .topbar-actions .topbar-cta-contribuicoes:hover {
  background: #fff8f8;
  color: var(--brand-dark);
  border-color: #fff;
}
@media (max-width: 767px) {
  .topbar .topbar-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
  }
  .topbar .topbar-cta,
  .topbar .topbar-actions .topbar-cta {
    min-height: 36px;
    padding: 9px 11px;
    font-size: 11px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .topbar .topbar-cta i {
    font-size: 13px;
  }
}
@media (max-width: 390px) {
  .topbar .topbar-cta,
  .topbar .topbar-actions .topbar-cta {
    padding-left: 9px;
    padding-right: 9px;
    gap: 5px;
    letter-spacing: .035em;
  }
}


/* ============================================================
   Menu principal em formato de botão discreto — SITE_030
   ============================================================ */
@media (min-width:1200px) {
  .navmenu > ul {
    gap: 7px;
  }

  .navmenu > ul > li > a,
  .navmenu > ul > li > a:focus {
    min-height: 40px;
    padding: 10px 15px;
    border: 1px solid #d9dee8;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
    color: var(--nav-color);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .025em;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(15,23,42,.06), 0 1px 0 rgba(255,255,255,.85) inset;
    transform: translateY(0);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
  }

  .navmenu > ul > li:last-child > a {
    padding-right: 15px;
  }

  .navmenu > ul > li:hover > a,
  .navmenu > ul > li > a.active,
  .navmenu > ul > li > a.active:focus,
  .navmenu > ul > li > a:hover,
  .navmenu > ul > li > a:focus:hover {
    color: var(--nav-hover-color);
    border-color: #cbd3df;
    background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
    box-shadow: 0 12px 28px rgba(15,23,42,.13), 0 1px 0 rgba(255,255,255,.9) inset;
    transform: translateY(2px);
  }

  .navmenu > ul > li > a:active {
    transform: translateY(3px);
    box-shadow: 0 8px 18px rgba(15,23,42,.12), 0 1px 0 rgba(255,255,255,.9) inset;
  }

  .navmenu .dropdown ul {
    left: 0;
    top: calc(100% + 8px);
    min-width: 230px;
    padding: 8px;
    border: 1px solid #d9dee8;
    border-top: 3px solid var(--brand-color);
    border-radius: 10px;
    box-shadow: 0 16px 36px rgba(15,23,42,.14);
    transform: translateY(8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .navmenu .dropdown ul::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
  }

  .navmenu .dropdown:hover > ul {
    top: calc(100% + 8px);
    transform: translateY(0);
  }

  .navmenu .dropdown ul a,
  .navmenu .dropdown ul a:focus {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    box-shadow: none;
    color: var(--nav-dropdown-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    transform: none;
    transition: color .18s ease, background-color .18s ease, padding-left .18s ease;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
    background: #f2f2f2;
    padding-left: 15px;
    box-shadow: none;
    transform: none;
  }
}

.navmenu .nav-chevron {
  width: 15px;
  height: 15px;
  margin-left: 7px;
  display: inline-block;
  position: relative;
  opacity: .78;
  flex: 0 0 auto;
  transition: transform .2s ease, opacity .2s ease;
}
.navmenu .nav-chevron::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  border-radius: 1px;
}
@media (min-width:1200px) {
  .navmenu .dropdown:hover > a .nav-chevron {
    transform: translateY(1px) rotate(180deg);
    opacity: 1;
  }
}
@media (max-width:1199px) {
  .navmenu .nav-chevron {
    margin-left: auto;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul li:hover > a {
    background: #f2f2f2;
    color: var(--nav-dropdown-hover-color);
  }
}


/* SITE_039 — links legais no rodapé */
.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.footer-legal-links a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-legal-links a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .footer-legal-links {
    flex-wrap: wrap;
    text-align: center;
  }
}


/* SITE_043 — Banner LGPD / Cookies */
.cookie-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2000;
  display: none;
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  background: rgba(20, 24, 31, .96);
  color: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.cookie-consent-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand-color);
  color: #fff;
  font-size: 22px;
}

.cookie-consent-text strong {
  display: block;
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 900;
  margin-bottom: 4px;
}

.cookie-consent-text p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-consent-text a,
.cookie-consent-link {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.cookie-consent-btn {
  border: 0;
  background: var(--brand-color);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 900;
  letter-spacing: .02em;
  transition: background .2s ease, transform .2s ease;
}

.cookie-consent-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-consent-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .cookie-consent-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    white-space: normal;
  }

  .cookie-consent-link,
  .cookie-consent-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   SECHOSVEL_004 — ajuste do banner de aviso para azul escuro
   ============================================================ */
.floating-notice {
  background: linear-gradient(90deg, #25285f 0%, #323680 52%, #25285f 100%) !important;
  color: #fff !important;
  border-top-color: rgba(255,255,255,.14) !important;
  border-bottom-color: rgba(255,255,255,.14) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.floating-notice .fn-flag {
  background: #039ee3 !important;
  color: #fff !important;
  border-radius: 999px !important;
  box-shadow: 0 6px 16px rgba(3,158,227,.25);
}
.floating-notice a {
  color: #fff !important;
  text-decoration-color: rgba(255,255,255,.55) !important;
}
.floating-notice a:hover { color: #dff5ff !important; }
.floating-notice .fn-close { color: #fff !important; opacity: .78 !important; }
.floating-notice .fn-close:hover { opacity: 1 !important; }

/* ============================================================
   SECHOSVEL_005 — botão de fechar do aviso junto ao conteúdo
   ============================================================ */
.floating-notice .container {
  position: relative;
  padding-right: 12px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  flex-wrap: wrap;
}
.floating-notice .fn-close {
  position: static !important;
  transform: none !important;
  order: -2;
  width: 28px;
  height: 28px;
  margin: 0 !important;
  flex: 0 0 auto;
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: #fff !important;
}
.floating-notice .fn-flag { order: -1; margin-right: 0 !important; }
@media (max-width: 767px) {
  .floating-notice .container {
    padding-right: 12px !important;
    justify-content: flex-start;
    text-align: left;
  }
}
