
  /* =========================================
     VARIÁVEIS GLOBAIS
     ========================================= */
  :root {
    --blue-950: #071c49;
    --blue-900: #0b2d68;
    --blue-800: #103b7d;
    --blue-700: #1452a3;
    --blue-500: #1e88e5;
    --cyan: #36b6ff;
    --silver: #d9dde6;
    --white: #fff;
    --bg: #f4f7fb;
    --text: #172033;
    --muted: #687386;
    --line: #dde5f0;
    --shadow: 0 18px 45px rgba(7, 28, 73, 0.16);
    --shadow-soft: 0 10px 28px rgba(7, 28, 73, 0.10);
    --transition: all 0.25s ease;
  }

  /* =========================================
     RESET E CONFIGURAÇÕES BASE
     ========================================= */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: Inter, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }

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

  ul {
    list-style: none;
  }

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

  /* =========================================
     ESTRUTURA PRINCIPAL
     ========================================= */
  .container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 22px;
  }

  /* =========================================
     TOPBAR E CABEÇALHO
     ========================================= */
  .topbar {
    background: linear-gradient(90deg, var(--blue-950), var(--blue-800));
    color: #fff;
    font-size: 0.9rem;
    border-bottom: 4px solid var(--cyan);
  }

  .topbar .container {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
  }

  .topbar-info {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
  }

  .topbar i {
    color: var(--cyan);
    margin-right: 7px;
  }

  .associate-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: #fff;
    color: var(--blue-900);
    font-weight: 900;
    transition: var(--transition);
  }

  .associate-top:hover {
    background: var(--cyan);
    color: var(--blue-950);
    transform: translateY(-2px);
  }

  header {
    background: #fff;
    box-shadow: 0 8px 26px rgba(7, 28, 73, 0.08);
    position: relative;
    z-index: 20;
  }

  .header-inner {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .brand img {
    height: 82px;
    width: auto;
    object-fit: contain;
    padding: 3px 6px;
    border-radius: 1px;
  }

  .brand-text h1 {
    color: var(--blue-950);
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .brand-text p {
    color: var(--blue-700);
    font-weight: 800;
    font-size: 0.92rem;
  }

  .header-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #eef6ff;
    border: 1px solid rgba(30, 136, 229, 0.18);
    border-radius: 18px;
    padding: 14px 18px;
    color: var(--blue-900);
    font-weight: 900;
  }

  .header-card i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--blue-900);
    color: #fff;
    border-radius: 50%;
    font-size: 1.1rem;
  }

  /* =========================================
     NAVEGAÇÃO (MENU)
     ========================================= */
  .main-nav {
    background: linear-gradient(90deg, var(--blue-950), var(--blue-800));
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  }

  .main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: none;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: 0;
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-menu a {
    display: block;
    padding: 18px 15px;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cyan);
    border-bottom-color: var(--cyan);
  }

  /* =========================================
     SEÇÃO HERO
     ========================================= */
  .hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(
        100deg,
        rgba(7, 28, 73, 0.96) 0%,
        rgba(11, 45, 104, 0.92) 48%,
        rgba(11, 45, 104, 0.36) 78%,
        rgba(11, 45, 104, 0.1) 100%
      ),
      url('https://www.sindicatometabase.org.br/site/assets/images/metabase.jpeg') center right/cover no-repeat;
    color: #fff;
  }

  .hero:before {
    
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 18%, rgba(54, 182, 255, 0.24), transparent 30%),
      radial-gradient(circle at 45% 85%, rgba(255, 255, 255, 0.12), transparent 28%);
  }

  .hero-content {
    position: relative;
    max-width: 680px;
    padding: 86px 0;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero h2 {
    font-family: Montserrat, sans-serif;
    font-size: 3.55rem;
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
  }

  .hero h2 span {
    color: var(--cyan);
  }

  .hero p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.1rem;
    max-width: 630px;
    margin-bottom: 28px;
  }

  /* =========================================
     BOTÕES E AÇÕES
     ========================================= */
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 21px;
    border-radius: 999px;
    font-weight: 900;
    transition: var(--transition);
    border: 2px solid transparent;
  }

  .btn-primary {
    background: var(--cyan);
    color: var(--blue-950);
  }

  .btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
  }

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

  /* =========================================
     ESTATÍSTICAS
     ========================================= */
  .stats-strip {
    margin-top: -58px;
    position: relative;
    z-index: 5;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .stat-card {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 24px;
    text-align: center;
  }

  .stat-card strong {
    display: block;
    color: var(--blue-900);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-card span {
    color: var(--muted);
    font-weight: 800;
    font-size: 0.9rem;
  }

  /* =========================================
     SEÇÕES GERAIS E TÍTULOS
     ========================================= */
  .section {
    padding: 82px 0;
  }

  .section-light {
    background: #fff;
  }

  .section-blue {
    background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
    color: #fff;
  }

  .section-title {
    text-align: center;
    margin-bottom: 44px;
  }

  .section-title .tag {
    color: var(--blue-500);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    margin-bottom: 8px;
    display: block;
  }

  .section-title h2 {
    font-family: Montserrat, sans-serif;
    color: var(--blue-950);
    font-size: 2.35rem;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
  }

  .section-title p {
    color: var(--muted);
    max-width: 760px;
    margin: 14px auto 0;
  }

  .section-blue .section-title h2,
  .section-blue .section-title p {
    color: #fff;
  }

  .section-blue .section-title .tag {
    color: var(--cyan);
  }

  /* =========================================
     SOBRE E CARTÕES DE SERVIÇOS/BENEFÍCIOS
     ========================================= */
  .about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
  }

  .about-card {
    background: #fff;
    border-radius: 22px;
    padding: 38px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  .about-card h3 {
    color: var(--blue-900);
    font-size: 1.55rem;
    margin-bottom: 14px;
  }

  .about-card p {
    color: #344054;
    margin-bottom: 16px;
    text-align: justify;
  }

  .about-photo {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 8px solid #fff;
  }

  .about-photo img {
    width: 100%;
    height: 470px;
    object-fit: cover;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .benefit-card,
  .service-card,
  .news-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
  }

  .benefit-card {
    padding: 26px;
  }

  .benefit-card:hover,
  .service-card:hover,
  .news-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
  }

  .benefit-card i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: #eef6ff;
    color: var(--blue-700);
    font-size: 1.35rem;
    margin-bottom: 16px;
  }

  .benefit-card h3 {
    color: var(--blue-950);
    margin-bottom: 9px;
    font-size: 1.08rem;
  }

  .benefit-card p,
  .service-card p,
  .news-body p {
    color: var(--muted);
    font-size: 0.93rem;
  }

  /* =========================================
     NOTÍCIAS E DESTAQUES
     ========================================= */
  .news-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
  }

  .news-feature-img {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 8px solid rgba(255, 255, 255, 0.08);
  }

  .news-feature-img img {
    height: 455px;
    width: 100%;
    object-fit: cover;
  }

  .news-feature-content h2 {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 2.1rem;
    line-height: 1.16;
    margin-bottom: 16px;
  }

  .news-feature-content p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 16px;
    text-align: justify;
  }

  .highlight-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
  }

  .highlight-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 17px;
  }

  .highlight-item strong {
    display: block;
    color: var(--cyan);
    font-size: 1.35rem;
  }

  .highlight-item span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 700;
  }

  /* =========================================
     SERVIÇOS
     ========================================= */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    padding: 28px;
  }

  .service-card i {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-500));
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 17px;
  }

  .service-card h3 {
    color: var(--blue-950);
    margin-bottom: 10px;
  }

  /* =========================================
     ASSOCIE-SE
     ========================================= */
  .associate-section {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
      url('https://www2.zapcatalao.com.br/wp-content/uploads/2026/05/FB_IMG_1778807735547-scaled.jpg') center right/cover no-repeat;
  }

  .associate-box {
    max-width: 760px;
    background: #fff;
    border-radius: 26px;
    padding: 38px;
    box-shadow: var(--shadow);
    border-left: 7px solid var(--cyan);
  }

  .associate-box h2 {
    font-family: Montserrat, sans-serif;
    color: var(--blue-950);
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .associate-box p {
    color: #344054;
    margin-bottom: 16px;
  }

  /* =========================================
     GRID DE NOTÍCIAS (CARDS)
     ========================================= */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .news-card {
    overflow: hidden;
  }

  .news-img {
    height: 205px;
    background: #eaf4ff;
  }

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

  .news-body {
    padding: 24px;
  }

  .news-badge {
    display: inline-block;
    background: #eef6ff;
    color: var(--blue-800);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  .news-body h3 {
    color: var(--blue-950);
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .read-more {
    font-weight: 900;
    color: var(--blue-700);
  }

  /* =========================================
     FOOTER E PARCEIROS
     ========================================= */
  .footer {
    background: radial-gradient(circle at right top, rgba(54, 182, 255, 0.16), transparent 36%),
      linear-gradient(135deg, var(--blue-950), #020b22);
    color: #fff;
    padding: 64px 0 24px;
    border-top: 6px solid var(--cyan);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
  }

  .footer h3,
  .footer h4 {
    margin-bottom: 16px;
  }

  .footer p,
  .footer li,
  .footer a {
    color: rgba(255, 255, 255, 0.78);
  }

  .footer-logo {
    height: 68px;
    width: auto;
    background: rgba(255, 255, 255, 1);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 16px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    display: inline-flex;
    gap: 8px;
    transition: var(--transition);
  }

  .footer-links a:hover {
    color: var(--cyan);
    transform: translateX(4px);
  }

  .contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
  }

  .contact-list i {
    color: var(--cyan);
    margin-top: 4px;
  }

  .partner-strip {
    margin-top: 34px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .partner-strip h4 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .partner-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    align-items: center;
  }

  .partner-logo {
    background: #fff;
    border-radius: 16px;
    min-height: 112px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .partner-logo img {
    max-height: 92px;
    width: auto;
    object-fit: contain;
  }

  .partner-logo.wide img {
    max-width: 100%;
    max-height: 96px;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 22px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.62);
  }

  /* =========================================
     MEDIA QUERIES (RESPONSIVIDADE)
     ========================================= */

  /* Telas até 1024px */
  @media (max-width: 1024px) {
    .about-grid,
    .news-feature {
      grid-template-columns: 1fr;
    }
    .benefits-grid,
    .services-grid,
    .news-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
    .footer-about {
      grid-column: span 2;
    }
    .partner-logos {
      grid-template-columns: repeat(3, 1fr);
    }
    .header-card {
      display: none;
    }
  }

  /* Telas até 768px (Mobile) */
  @media (max-width: 768px) {
    .topbar {
      display: none;
    }
    
    .topbar .container,
    .header-inner {
      flex-direction: column;
      text-align: center;
      padding-top: 12px;
      padding-bottom: 12px;
    }
    
    .brand {
      flex-direction: column;
    }
    
    .brand img {
      height: auto;
      width: 260px;
    }
    
    .brand-text h1 {
      font-size: 1.25rem;
    }
    
    .menu-toggle {
      display: block;
    }
    
    .nav-menu {
      display: none;
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--blue-950);
    }
    
    .nav-menu.open {
      display: flex;
    }
    
    .nav-menu a {
      padding: 15px 22px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .hero {
      min-height: auto;
      background: linear-gradient(180deg, rgba(7, 28, 73, 0.96), rgba(7, 28, 73, 0.82)),
        url('https://www.sindicatometabase.org.br/site/assets/images/metabase.jpeg') center/cover no-repeat;
    }
    
    .hero-content {
      padding: 58px 0;
    }
    
    .hero h2 {
      font-size: 2.35rem;
    }
    
    .stats-strip {
      margin-top: 24px;
    }
    
    .section {
      padding: 58px 0;
    }
    
    .section-title h2 {
      font-size: 1.9rem;
    }
    
    .benefits-grid,
    .services-grid,
    .news-grid,
    .stats-grid,
    .footer-grid,
    .highlight-list {
      grid-template-columns: 1fr;
    }
    
    .footer-about {
      grid-column: span 1;
    }
    
    .associate-section {
      background: #fff;
    }
    
    .associate-box {
      padding: 28px 22px;
    }
    
    .partner-logos {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* ==========================================================================
   Page Hero (Área de Destaque / Título)
   ========================================================================== */
.page-hero {
  background: radial-gradient(circle at right top, rgba(54, 182, 255, .20), transparent 34%),
              linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: #fff;
  padding: 54px 0;
  border-bottom: 6px solid var(--cyan);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  font-size: .9rem;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--cyan);
  font-weight: 800;
}

.breadcrumb i {
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
}

.page-hero h1 {
  font-family: Montserrat, sans-serif;
  font-size: 2.55rem;
  line-height: 1.12;
  max-width: 920px;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
}

.post-meta i {
  color: var(--cyan);
  margin-right: 7px;
}
  