/* ============================================================
   HAC - Hospital Angelina Caron
   Stylesheet principal
   Cores: verde marca #2D8F44, texto #333, branco #fff
   Tipografia: Montserrat (Google Fonts)
   ============================================================ */

:root{
  /* Brand & semantic — alinhados com Figma "Pages Building" tokens */
  --hac-green: #2D8F44;       /* Primary-Brand */
  --hac-green-dark: #226D34;  /* Primary-Dark */
  --hac-green-light: #45C463; /* Primary-Light (corrigido — era #97CB62) */
  --hac-green-title: #345D32; /* Text-Title — verde-escuro p/ headings */
  --hac-green-deep: #143E1D;  /* utilitária (sem equivalente Figma) */
  --hac-green-mid: #386037;   /* utilitária (sem equivalente Figma) */
  --hac-text: #333333;        /* Text-Body */
  --hac-text-muted: #888888;  /* Darkest-Neutral */
  --hac-medium-neutral: #BBBBBB; /* Medium-Neutral */
  --hac-dark-neutral: #AAAAAA;   /* Dark-Neutral */
  --hac-off-black: #202020;   /* Off-Black-Brand */
  --hac-warning: #FEC50D;     /* Warning-Color */
  --hac-error: #FF1100;       /* Error-Color */
  --hac-border: #DDDDDD;      /* Light-Neutral */
  --hac-bg-soft: #EEEEEE;     /* Lightest-Neutral */
  --hac-bg-light: #FAFAFA;    /* Off-White-Brand */
  --hac-white: #FFFFFF;       /* White-Brand */
  --hac-shadow: 0 4px 12px rgba(0,0,0,.08);
  --hac-shadow-strong: 0 4px 24px rgba(0,0,0,.15);
  --hac-radius-sm: 10px;
  --hac-radius-md: 20px;
  --hac-radius-lg: 40px;
  --hac-radius-pill: 60px;
  --hac-container: 1648px;
}

*,*::before,*::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

html, body{ overflow-x: clip; }

body{
  font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--hac-text);
  margin: 0;
  background: var(--hac-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{ max-width: 100%; height: auto; display: block; }
a{ color: var(--hac-green); text-decoration: none; transition: color .2s ease; }
a:hover{ color: var(--hac-green-dark); }

/* Acessibilidade */
.skip-link{
  position: absolute; left: -9999px; top: 0;
  background: var(--hac-green); color: #fff; padding: 10px 20px;
  z-index: 10000; font-weight: 700;
}
.skip-link:focus{ left: 10px; top: 10px; color:#fff; }

:focus-visible{
  outline: 3px solid var(--hac-green-light);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Container mestre 1920 > 1648 */
.hac-container{
  width: 100%;
  max-width: var(--hac-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============= TIPOGRAFIA ============= */
/* Headings usam Text-Title (#345D32, verde-escuro) por padrão — match com Figma.
   Conteúdo body permanece Text-Body (#333333). */
h1,h2,h3,h4,h5,h6{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--hac-green-title);
  margin: 0 0 .5em;
  line-height: 1.1;
}
h1{ font-size: clamp(32px, 4vw, 64px); }
h2{ font-size: clamp(28px, 3vw, 48px); }
h3{ font-size: clamp(22px, 2vw, 36px); }
h4{ font-size: clamp(20px, 1.5vw, 28px); }

.text-green{ color: var(--hac-green) !important; }
.bg-green{ background-color: var(--hac-green) !important; }
.bg-green-gradient{ background: linear-gradient(180deg, var(--hac-green) 0%, var(--hac-green-light) 100%); }

/* ============= NAVBAR ============= */
.hac-navbar{
  background: var(--hac-white);
  height: 76px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.04);
  position: sticky;
  top: 0;
  z-index: 1040;
}
.hac-navbar .hac-nav-inner{
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 136px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hac-navbar .hac-logo img{ height: 40px; width: auto; }
.hac-navbar #hac-main-nav{ flex: 1; min-width: 0; }
.hac-navbar .hac-nav-menu{
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 4px;
  padding: 0 60px;
  margin: 0;
  flex-wrap: wrap;
  width: 100%;
  /* Estica vertical pra altura total do navbar — assim cada LI
     também pode esticar, fechando o gap entre o botão e o dropdown. */
  align-self: stretch;
  align-items: stretch;
}
.hac-navbar .hac-nav-menu a{
  color: var(--hac-green);
  font-weight: 600;
  font-size: 17px;
  padding: 10px 20px;
  border-radius: var(--hac-radius-pill);
  display: inline-flex;
  align-items: center;
  transition: background .2s, color .2s;
}
.hac-navbar .hac-nav-menu a:hover,
.hac-navbar .hac-nav-menu li.active > a{
  background: var(--hac-bg-soft);
  color: var(--hac-green);
}

/* Triggers de dropdown — padding compacto (não fill no botão inteiro)
   e hover usa apenas mudança de cor + leve bg-soft, fiel ao look antigo. */
/* .hac-nav-item ocupa altura total do navbar (98px explícito) pra fechar
   o gap entre o botão (que tem padding 12 22 = 46px) e o dropdown (top:100%).
   Sem isso, mouse sai do hover na zona vazia e o dropdown some. */
.hac-nav-item.has-dropdown{
  display: flex;
  align-items: center;
  min-height: 76px;  /* casado com .hac-navbar height */
}
.hac-nav-trigger{
  background: transparent;
  border: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--hac-green);
  font-size: 17px;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  border-radius: var(--hac-radius-pill);
  transition: background .2s, color .2s;
}
/* Estado ativo (aberto) — sempre aplicado, independente de pointer */
.hac-nav-trigger[aria-expanded="true"]{
  background: var(--hac-bg-soft);
  color: var(--hac-green);
}
/* Hover SÓ em devices com mouse real (desktop). Mobile/touch usa click
   via JS — :hover em touch causa "stuck" state que confunde usuário. */
@media (hover: hover) and (pointer: fine){
  .hac-nav-trigger:hover,
  .hac-nav-item.has-dropdown:hover .hac-nav-trigger,
  .hac-nav-item.has-dropdown:focus-within .hac-nav-trigger{
    background: var(--hac-bg-soft);
    color: var(--hac-green);
  }
}

/* Painel expandido. Posicionado abaixo do navbar (top: 100%), preenche
   toda a largura. Aparece em :hover/:focus-within do .hac-nav-item OU
   quando aria-expanded=true (fallback acessível em mobile/teclado). */
.hac-nav-dropdown{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050; /* > navbar (1040) e > busca-bar */
  background: var(--hac-bg-light);
  border-top: 1px solid var(--hac-green-deep);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  display: none;
  opacity: 1; /* explicit — evita bleed-through durante animação */
}
/* Abertura do dropdown:
   - Desktop (hover:hover): hover OU focus-within abre instantaneamente
   - Mobile/touch: aria-expanded=true (controlado por click via JS) */
.hac-nav-trigger[aria-expanded="true"] + .hac-nav-dropdown{
  display: block;
  animation: hac-dd-slide .18s ease-out forwards;
}
@media (hover: hover) and (pointer: fine){
  .hac-nav-item.has-dropdown:hover .hac-nav-dropdown,
  .hac-nav-item.has-dropdown:focus-within .hac-nav-dropdown{
    display: block;
    animation: hac-dd-slide .18s ease-out forwards;
  }
}
@keyframes hac-dd-slide{
  from{ transform: translateY(-8px); }
  to  { transform: translateY(0); }
}

.hac-nav-dropdown-inner{
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 136px;
  max-width: 1920px;
  margin: 0 auto;
}
.hac-nav-dropdown-title{
  flex: 0 0 300px;
  margin: 0;
  padding: 12px 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--hac-green);
}
.hac-nav-dropdown-cols{
  display: flex;
  gap: 40px;
  flex: 1;
}
.hac-nav-dropdown-cols ul{
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 12px 40px;
  margin: 0;
  list-style: none;
  flex: 1 1 0;
  max-width: 350px;
}
.hac-nav-dropdown-cols a{
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--hac-text);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;        /* evita textos quebrarem em 1366px etc. */
  transition: color .2s;
}
.hac-nav-dropdown-cols a:hover{ color: var(--hac-green); }

/* Resoluções intermediárias: aperta padding/gap pra textos não quebrarem */
@media (max-width: 1500px){
  .hac-nav-dropdown-inner{ padding: 32px 48px; gap: 24px; }
  .hac-nav-dropdown-title{ flex: 0 0 220px; padding: 12px 16px; font-size: 22px; }
  .hac-nav-dropdown-cols{ gap: 24px; }
  .hac-nav-dropdown-cols ul{ padding: 12px 16px; max-width: none; }
  .hac-nav-dropdown-cols a{ font-size: 16px; }
}
@media (max-width: 1366px){
  .hac-nav-dropdown-inner{ padding: 28px 24px; gap: 16px; }
  .hac-nav-dropdown-title{ flex: 0 0 180px; padding: 12px 8px; font-size: 20px; }
  .hac-nav-dropdown-cols{ gap: 12px; }
  .hac-nav-dropdown-cols ul{ padding: 12px 8px; gap: 18px; }
  .hac-nav-dropdown-cols a{ font-size: 15px; }
}

@media (max-width: 992px){
  .hac-nav-trigger{ padding: 12px 16px; font-size: 16px; }
  .hac-nav-dropdown-inner{ flex-direction: column; padding: 24px; gap: 16px; }
  .hac-nav-dropdown-title{ flex: none; padding: 0; font-size: 20px; }
  .hac-nav-dropdown-cols{ flex-direction: column; gap: 8px; width: 100%; }
  .hac-nav-dropdown-cols ul{ width: 100%; max-width: none; padding: 8px 0; gap: 12px; }
  .hac-nav-dropdown-cols a{ text-align: left; white-space: normal; }
}
.hac-search-btn{
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--hac-bg-soft);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hac-text);
  cursor: pointer;
  transition: background .2s;
}
.hac-search-btn:hover{ background: #e4e4e4; }
.hac-search-btn svg{ width: 20px; height: 20px; }

/* ============= NAVBAR ALT (verde — usado na maioria das páginas internas) =============
   Figma: bg verde-marca, logo branco, menu items brancos, lupa cinza-claro. */
body.hac-navbar-alt .hac-navbar{
  background: var(--hac-green);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
body.hac-navbar-alt .hac-nav-trigger{ color: #fff; }
body.hac-navbar-alt .hac-nav-trigger:hover,
body.hac-navbar-alt .hac-nav-trigger[aria-expanded="true"]{
  background: rgba(255,255,255,.15);
  color: #fff;
}
@media (hover: hover) and (pointer: fine){
  body.hac-navbar-alt .hac-nav-item.has-dropdown:hover .hac-nav-trigger,
  body.hac-navbar-alt .hac-nav-item.has-dropdown:focus-within .hac-nav-trigger{
    background: rgba(255,255,255,.15);
    color: #fff;
  }
}
body.hac-navbar-alt .hac-search-btn{
  background: rgba(255,255,255,.85);
  color: var(--hac-text);
}
body.hac-navbar-alt .hac-search-btn:hover{ background: #fff; }
/* Logo: aplica filtro pra tornar branco — funciona com PNGs verdes/escuros */
body.hac-navbar-alt .hac-logo img{
  filter: brightness(0) invert(1);
}

.hac-mobile-toggle{
  display: none;
  background: transparent;
  border: 0;
  font-size: 28px;
  color: var(--hac-text);
  cursor: pointer;
}

/* ============= BUSCA VERDE =============
   Oculta por padrão. Aparece quando:
   - body tem data-search="open" (homepage — visível por padrão)
   - body tem classe .hac-search-open (toggle via lupa do navbar)
   Animação suave via max-height + opacity. */
.hac-search-bar{
  background: var(--hac-green);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .25s ease, padding .25s ease, opacity .2s ease;
}
body[data-search="open"] .hac-search-bar,
body.hac-search-open .hac-search-bar{
  padding: 20px 0;
  max-height: 160px;
  opacity: 1;
}

/* Na Home, a busca verde do header (acima do banner) é suprimida —
   a busca da home vive em .hac-home-busca, abaixo do hero. O ícone
   da lupa no menu permanece, mas o clique rola até a busca abaixo. */
body[data-home="true"] .hac-search-bar{
  display: none !important;
}
.hac-search-input{
  width: 100%;
  background: var(--hac-bg-light);
  border-radius: 80px;
  border: 0;
  padding: 12px 48px 12px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  color: var(--hac-text);
  height: 48px;
  /*box-shadow: 0 2px 8px rgba(0,0,0,.08);*/
}
.hac-search-input::placeholder{ color: var(--hac-text-muted); }
.hac-search-wrapper{ position: relative; }
.hac-search-wrapper svg{
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  color: var(--hac-text-muted);
  pointer-events: none;
}

/* ============= BOTÕES ============= */
.btn-hac{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--hac-radius-pill);
  padding: 15px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-hac-primary{
  background: var(--hac-green);
  color: var(--hac-white);
  font-weight: 700;
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
}
.btn-hac-primary:hover{ background: var(--hac-green-dark); color: var(--hac-white); }
.btn-hac-outline{
  border-color: var(--hac-text);
  color: var(--hac-text);
  background: transparent;
}
.btn-hac-outline:hover{
  background: var(--hac-text);
  color: var(--hac-white);
}
.btn-hac-outline-white{
  border-color: #fff; color: #fff; background: transparent;
}
.btn-hac-outline-white:hover{ background: #fff; color: var(--hac-green) !important; }
.btn-hac-sm{
  padding: 8px 20px;
  font-size: 14px;
}

/* ============= CARROSSEL PRINCIPAL ============= */
/* Layered carousel: 5 slides visíveis, ativo no centro com ~81% da
   viewport, prev/next escalonados a 88% e prev2/next2 a 76% (Figma). */
.hac-hero-carousel{
  padding: 44px 0 24px;
  background: #fff;
  overflow: hidden;
}
.hac-hero-carousel .swiper{
  max-width: 1920px;
  margin: 0 auto;
  overflow: visible;
  padding: 0 180px 16px;
  perspective: 1600px;
}
.hac-hero-carousel .swiper-slide{
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 1560 / 668;
}
.hac-hero-carousel .swiper-slide picture{
  display: block;
  width: 100%;
  height: 100%;
}
.hac-hero-carousel .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hac-hero-carousel .swiper-slide-active{ z-index: 5; }
.hac-hero-carousel .swiper-slide-prev,
.hac-hero-carousel .swiper-slide-next{ z-index: 3; opacity: .92; }
.hac-hero-carousel .swiper-slide-prev ~ .swiper-slide-next ~ .swiper-slide,
.hac-hero-carousel .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next){
  z-index: 1;
  opacity: .82;
}
@media (max-width: 1100px){
  .hac-hero-carousel .swiper{ padding: 0 24px 40px; }
}

/* Setas + dots custom */
.hac-slides-nav{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}
.hac-slides-nav .hac-nav-btn{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--hac-text);
  transition: background .2s;
}
.hac-slides-nav .hac-nav-btn:hover{ background: var(--hac-bg-soft); }
.hac-slides-nav .hac-nav-btn svg{ width: 24px; height: 24px; }
.hac-slides-nav .hac-dots{
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  align-items: center;
}
.hac-slides-nav .hac-dot{
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--hac-bg-soft);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all .2s;
}
.hac-slides-nav .hac-dot.active,
.hac-slides-nav .hac-dot[aria-current="true"]{
  width: 16px; height: 16px;
  background: var(--hac-green);
}

/* ============= SEÇÃO FALE CONOSCO (retangular branca) ============= */
.hac-fale-conosco{
  padding: 80px 0;
  background: #fff;
}
.hac-fale-conosco h2{
  color: var(--hac-green);
  text-align: center;
  margin-bottom: 16px;
}
.hac-fale-conosco .sub{
  text-align: center;
  font-size: 22px;
  color: var(--hac-text);
  margin-bottom: 40px;
}
.hac-fale-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.hac-fale-btn{
  background: #fff;
  border: 1px solid var(--hac-border);
  border-radius: var(--hac-radius-pill);
  padding: 18px 24px;
  color: var(--hac-text);
  font-size: 18px;
  text-align: center;
  transition: all .2s;
  display: block;
}
.hac-fale-btn:hover{
  background: var(--hac-green);
  color: #fff;
  border-color: var(--hac-green);
  transform: translateY(-2px);
  box-shadow: var(--hac-shadow);
}

/* ============= SEÇÃO ESTRUTURA (verde gradiente, setores) ============= */
/* Figma: cards edge-to-edge, sem gap, sem border-radius, full-width.
   Faixa verde superior com título + cards ocupando largura total + faixa
   verde inferior (padding-bottom da section). */
.hac-estrutura{
  background: linear-gradient(180deg, var(--hac-green) 0%, var(--hac-green-light) 100%);
  padding: 60px 0 0px;
  overflow: hidden;
}
.hac-estrutura .section-title{
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  font-size: clamp(24px, 2.5vw, 36px);
}
.hac-setores{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.hac-setor{
  flex: 1 1 0;
  min-width: 80px;
  height: 660px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: block;
  color: #fff;
  overflow: hidden;
  transition: flex-grow .5s ease;
}
.hac-setor::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,.8) 100%);
  transition: background .3s;
}
.hac-setor:hover{ flex-grow: 2.4; }
.hac-setor:hover::before{
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.85) 100%);
}
.hac-setor-title{
  position: absolute;
  left: 32px;
  bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  transform-origin: left bottom;
  transform: rotate(-90deg);
  transition: transform .35s ease;
  z-index: 1;
}
.hac-setor:hover .hac-setor-title{ transform: rotate(0deg); }

/* ============= DEPOIMENTOS ============= */
.hac-depoimentos{
  background: #fff;
  padding: 120px 0 80px;
}
.hac-depoimentos h2{
  color: var(--hac-green);
  text-align: center;
  margin-bottom: 16px;
}
.hac-depoimentos .sub{
  text-align: center;
  font-size: 22px;
  margin-bottom: 48px;
  color: var(--hac-text);
}
.hac-depo-wrap{
  display: grid;
  /* Figma: depoimento principal (foto+texto) à ESQUERDA, miniaturas à DIREITA */
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* Setas de navegação dos Depoimentos (Figma exibe < dots > juntos) */
.hac-depo-nav{ gap: 16px; }
.hac-depo-arrow{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--hac-text);
  transition: background .2s, color .2s;
}
.hac-depo-arrow:hover{ background: var(--hac-bg-soft); color: var(--hac-green); }
.hac-depo-arrow.swiper-button-disabled{ opacity: .35; cursor: default; }
.hac-depo-wrap .hac-swiper-depoimentos{ width: 100%; }
.hac-depo-thumbs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hac-depo-thumbs .thumb{
  appearance: none;
  border: 0;
  padding: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-color: var(--hac-bg-soft);
  cursor: pointer;
  opacity: .75;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: opacity .2s ease, transform .2s ease, outline-color .2s ease;
}
.hac-depo-thumbs .thumb:hover{
  opacity: 1;
  transform: translateY(-2px);
}
.hac-depo-thumbs .thumb.is-active{
  opacity: 1;
  outline-color: var(--hac-green);
}
.hac-depoimento{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hac-depoimento .foto{
  aspect-ratio: 466/420;
  border-radius: var(--hac-radius-md);
  border: 10px solid var(--hac-bg-soft);
  background-size: cover;
  background-position: center;
}
.hac-depoimento h3{
  color: var(--hac-green);
  font-size: 36px;
}
.hac-depoimento p{
  font-size: 20px;
  line-height: 1.4;
}

/* ============= NOTÍCIAS ============= */
.hac-noticias{
  background: var(--hac-bg-soft);
  padding: 120px 0 100px;
}
.hac-noticias h2{
  color: var(--hac-green);
  margin-bottom: 40px;
}
.hac-noticia-card{
  background: #fff;
  border-radius: var(--hac-radius-sm);
  border: 10px solid var(--hac-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.hac-noticia-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--hac-shadow-strong);
}
.hac-noticia-card .thumb{
  aspect-ratio: 480/270;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--hac-border);
}
.hac-noticia-card .body{
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.hac-noticia-card h3{
  font-size: 22px;
  color: var(--hac-green);
  margin: 0;
  line-height: 1.1;
}
.hac-noticia-card .teaser{
  font-size: 18px;
  margin: 0;
  color: var(--hac-text);
  flex: 1;
}
.hac-noticia-card .tag{
  display: inline-flex;
  align-self: flex-start;
  background: var(--hac-green);
  color: #fff;
  border-radius: var(--hac-radius-pill);
  padding: 6px 16px;
  font-size: 12px;
  text-transform: lowercase;
}

/* ============= SIGA O HAC / INSTAGRAM ============= */
.hac-siga{
  background: #fff;
  padding: 120px 60px 40px;
}
.hac-siga h2{
  color: var(--hac-green);
  margin-bottom: 20px;
}
.hac-siga-icons{
  display: inline-flex;
  gap: 24px;
  margin-bottom: 44px;
}
.hac-siga-icons a{
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hac-text-muted);
  transition: transform .2s;
}
.hac-siga-icons a:hover{ transform: translateY(-2px); }
.hac-insta-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.hac-insta-card{
  aspect-ratio: 350/469;
  border-radius: var(--hac-radius-sm);
  border: 10px solid var(--hac-bg-soft);
  background-size: cover;
  background-position: center;
  transition: transform .2s;
}
.hac-insta-card:hover{ transform: scale(1.02); }

/* ============= PRÊMIOS ============= */
.hac-premios{
  background: var(--hac-bg-soft);
  padding: 100px 0;
}
.hac-premios h2{ text-align: center; color: var(--hac-green-title); margin-bottom: 48px; }
.hac-selos{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.hac-selo{
  width: 200px; height: 200px;
  border-radius: var(--hac-radius-md);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: var(--hac-shadow);
}
.hac-selo img{ max-width: 100%; max-height: 100%; object-fit: contain; }

/* ============= FOOTER ============= */
.hac-footer{
  background: var(--hac-green);
  color: #fff;
  padding: 92px 50px 0;
}
.hac-footer a{ color: #fff; font-size:14px }
.hac-footer a:hover{ opacity: .85; color: #fff; }
.hac-footer .footer-cols{
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
.hac-footer .logo-bloc{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hac-footer .footer-logo{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hac-footer .footer-logo-link{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: #fff;
  max-width: 100%;
  flex-wrap: wrap;
}
.hac-footer .footer-logo-symbol{
  height: 80px; width: auto;
  max-width: 100%;
  color: #fff;
  filter: brightness(0) invert(1);
}
.hac-footer .footer-logo-text{
  height: 60px; width: auto;
  max-width: 100%;
  color: #fff;
  filter: brightness(0) invert(1);
}
.hac-footer .tagline{
  font-size: 20px;
  text-align: left;
  width: 100%;
  max-width: 362px;
  margin-left: 0;
}
.hac-footer .central{
  font-size: 25px;
  font-weight: 700;
  margin: 0;
}
.hac-footer .telefone{
  font-size: 25px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hac-footer .endereco{
  display: flex;
  align-items: flex-start;
  gap: 17px;
  font-size: 18px;
  line-height: 1.4;
}
.hac-footer .endereco svg{ flex-shrink: 0; width: 20px; height: 29px; margin-top: 4px; }
.hac-footer .footer-links{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 18px 24px;
  align-content: start;
  justify-self: end;
  max-width: 420px;
  width: 100%;
}
.hac-footer .footer-links a{
  border: 1px solid #fff;
  border-radius: var(--hac-radius-pill);
  padding: 14px 24px;
  font-size: 18px;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.hac-footer .footer-links a svg{ flex-shrink: 0; }
.hac-footer .footer-links a:hover{
  background: #fff;
  color: var(--hac-green);
}
.hac-footer-bottom{
  border-top: 4px solid #fff;
  margin-top: 60px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hac-footer-bottom .copy{ font-size: 13px; line-height: 1.4; }
.hac-footer-bottom .links-bottom{
  display: flex;
  font-weight: 600;
  gap: 20px;
  flex-wrap: wrap;
}
.hac-footer-bottom .social{ display: inline-flex; gap: 15px; }
.hac-footer-bottom .social a svg{ width: 25px; height: 25px; }

/* ============= PÁGINAS INTERNAS ============= */
.hac-page-header{
  background: var(--hac-green);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.hac-page-header h1{ color: #fff; margin: 0; }
.hac-breadcrumb{
  padding: 16px 0;
  background: var(--hac-bg-light);
  border-bottom: 1px solid var(--hac-border);
}
.hac-breadcrumb ol{
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0; margin: 0;
  flex-wrap: wrap;
  font-size: 16px;
}
.hac-breadcrumb li + li::before{
  content: "›";
  margin-right: 8px;
  color: var(--hac-text-muted);
}
.hac-breadcrumb a{ color: var(--hac-text); }
.hac-breadcrumb a:hover{ color: var(--hac-green); }
.hac-breadcrumb [aria-current="page"]{ color: var(--hac-green); font-weight: 600; }

.hac-section{ padding: 80px 0; }
.hac-section-alt{ background: var(--hac-bg-soft); }

/* Card de horário (Horários de Visitas) */
.hac-horario-card{
  background: #fff;
  border-radius: var(--hac-radius-md);
  padding: 32px;
  box-shadow: var(--hac-shadow);
  border-left: 6px solid var(--hac-green);
  height: 100%;
}
.hac-horario-card h3{
  color: var(--hac-green);
  font-size: 24px;
  margin-bottom: 16px;
}
.hac-horario-card .horario{
  font-size: 20px;
  font-weight: 600;
  margin: 12px 0;
}
.hac-horario-card ul{ padding-left: 20px; margin: 0; }
.hac-horario-card li{ margin-bottom: 6px; font-size: 16px; }

/* Card governança (membros / diretoria) */
.hac-membro-card{
  background: #fff;
  border-radius: var(--hac-radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--hac-shadow);
  height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.hac-membro-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--hac-shadow-strong);
}
.hac-membro-card .avatar{
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--hac-bg-soft);
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--hac-green);
}
.hac-membro-card h3{ color: var(--hac-green); font-size: 22px; margin: 0 0 8px; }
.hac-membro-card .cargo{ color: var(--hac-text-muted); font-size: 16px; margin: 0; }

/* Estrutura - cards com stats */
.hac-stat-card{
  background: #fff;
  border-radius: var(--hac-radius-md);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--hac-shadow);
  height: 100%;
}
.hac-stat-card .numero{
  font-size: 56px;
  font-weight: 800;
  color: var(--hac-green);
  line-height: 1;
  margin-bottom: 8px;
}
.hac-stat-card .label{
  font-size: 18px;
  color: var(--hac-text);
  margin: 0;
}

/* Notícia individual */
.hac-noticia-post{ padding: 60px 0; }
.hac-noticia-post .hero-img{
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: var(--hac-radius-md);
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
}
.hac-noticia-post .meta{
  display: flex;
  gap: 24px;
  color: var(--hac-text-muted);
  font-size: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hac-noticia-post .meta span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hac-noticia-post .conteudo{
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
}
.hac-noticia-post .conteudo h2{
  color: var(--hac-green);
  margin: 32px 0 16px;
  font-size: 32px;
}
.hac-noticia-post .conteudo h3{
  color: var(--hac-text);
  margin: 28px 0 12px;
  font-size: 24px;
}

/* ============= HERO DE PÁGINA INTERNA (banner com imagem + título) — V2 specs ============= */
.hac-page-hero{
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 136px 80px;
  color: #fff;
  background-color: var(--hac-bg-soft);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 4px 4px rgba(0,0,0,.08);
}
.hac-page-hero .hac-container{
  max-width: var(--hac-container);
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}
.hac-page-hero h1{
  color: #fff;
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 800;
  margin: 0;
  line-height: 1;
  letter-spacing: -.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,.45), 0 1px 3px rgba(0,0,0,.5);
  max-width: 1000px;
}
@media (max-width: 992px){
  .hac-page-hero{ min-height: 400px; padding: 30px 24px 50px; }
  .hac-page-hero h1{ font-size: clamp(32px, 8vw, 56px); }
}

/* ============= APRESENTAÇÃO VERDE (duas colunas, título + texto) ============= */
.hac-presentation{
  background: var(--hac-green);
  color: #fff;
  padding: 120px 0 0;
}
.hac-presentation .row-2col{
  display: grid;
  grid-template-columns: 325px 1fr;
  gap: 165px;
  max-width: var(--hac-container);
  margin: 0 auto;
  padding: 0 24px;
}
.hac-presentation h2{
  color: #fff;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.09;
  margin: 0;
}
.hac-presentation .lead{
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.3;
  margin: 0;
  white-space: pre-line;
}
.hac-presentation--alert h2{ font-size: clamp(32px, 3.2vw, 48px); }
/* Headings dentro do conteúdo (descricao_longa) herdam o verde-título global
   (h1..h6 → --hac-green-title), ilegível sobre o fundo verde. Força branco. */
.hac-presentation .content h3,
.hac-presentation .content h4,
.hac-presentation .content h5{ color: #fff; }

/* ============= FOTO EM DESTAQUE sobre fundo verde/branco ============= */
.hac-photo-split{
  position: relative;
  background: #fff;
  padding-bottom: 0;
}
.hac-photo-split::before{
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 40%;
  background: var(--hac-green);
  z-index: 0;
}
.hac-photo-split .photo{
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 1106px;
  aspect-ratio: 1106/989;
  background-size: cover;
  background-position: center;
  border-radius: var(--hac-radius-md);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}

/* ============= DOCUMENTOS / ACORDEON (Governança) ============= */
.hac-doc-list{
  max-width: var(--hac-container);
  margin: 0 auto;
  padding: 0 24px;
}
.hac-doc-group{
  margin-bottom: 48px;
}
.hac-doc-group h2{
  color: var(--hac-green);
  font-size: clamp(28px, 2.5vw, 36px);
  border-bottom: 2px solid var(--hac-green);
  padding-bottom: 16px;
  margin-bottom: 32px;
}
.hac-doc-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--hac-border);
  border-radius: var(--hac-radius-sm);
  padding: 20px 28px;
  margin-bottom: 12px;
  transition: all .2s;
}
.hac-doc-item:hover{
  border-color: var(--hac-green);
  box-shadow: var(--hac-shadow);
}
.hac-doc-item .info{ flex: 1; min-width: 0; }
.hac-doc-item .title{
  font-size: 18px;
  font-weight: 600;
  color: var(--hac-text);
  margin: 0 0 4px;
}
.hac-doc-item .meta{
  font-size: 14px;
  color: var(--hac-text-muted);
  margin: 0;
}
.hac-doc-item .btn-download{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hac-green);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid var(--hac-green);
  border-radius: var(--hac-radius-pill);
  white-space: nowrap;
  transition: all .2s;
}
.hac-doc-item .btn-download:hover{
  background: var(--hac-green);
  color: #fff;
}

/* ============= TABELA DE HORÁRIOS (Visitas) ============= */
.hac-table-wrap{
  max-width: var(--hac-container);
  margin: 0 auto 48px;
  padding: 0 24px;
}
.hac-table-title{
  display: inline-block;
  background: var(--hac-green);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--hac-radius-pill);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}
.hac-table-title.sus{ background: var(--hac-green-dark); }
.hac-h-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--hac-radius-md);
  overflow: hidden;
  box-shadow: var(--hac-shadow);
}
.hac-h-table th{
  background: var(--hac-green);
  color: #fff;
  text-align: left;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 700;
}
.hac-h-table td{
  padding: 18px 24px;
  font-size: 16px;
  border-bottom: 1px solid var(--hac-border);
  vertical-align: top;
}
.hac-h-table tr:last-child td{ border-bottom: 0; }
.hac-h-table tr:nth-child(even) td{ background: var(--hac-bg-light); }
.hac-h-table .col-ala{ font-weight: 700; color: var(--hac-green); width: 28%; }

.hac-note-card{
  background: var(--hac-bg-light);
  border-left: 6px solid var(--hac-green);
  border-radius: var(--hac-radius-sm);
  padding: 24px 28px;
  margin-top: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hac-note-card svg{ flex-shrink: 0; color: var(--hac-green); width: 28px; height: 28px; }
.hac-note-card p{ margin: 0; font-size: 17px; line-height: 1.5; }

/* ============= ESTRUTURA (texto + imagem) ============= */
.hac-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--hac-container);
  margin: 0 auto;
  padding: 0 24px;
}
.hac-split.reverse{ direction: rtl; }
.hac-split.reverse > *{ direction: ltr; }
.hac-split .photo{
  aspect-ratio: 860/890;
  background-size: cover;
  background-position: center;
  border-radius: var(--hac-radius-md);
  box-shadow: var(--hac-shadow-strong);
}
.hac-split h2{
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hac-split p{ font-size: clamp(18px, 1.3vw, 22px); line-height: 1.4; }

/* Números grandes da estrutura */
.hac-numeros-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--hac-container);
  margin: 80px auto 0;
  padding: 0 24px;
}
.hac-numero-card{
  background: #fff;
  border: 2px solid var(--hac-green);
  border-radius: var(--hac-radius-md);
  padding: 36px 24px;
  text-align: center;
}
.hac-numero-card .num{
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 800;
  color: var(--hac-green);
  line-height: 1;
  margin-bottom: 8px;
}
.hac-numero-card .txt{ font-size: 16px; color: var(--hac-text); margin: 0; }

/* ============= NOTÍCIA SINGULAR ============= */
.hac-noticia-hero{
  width: 100%;
  height: 640px;
  background-size: cover;
  background-position: center;
  position: relative;
}
/* Body do artigo — Figma: texto plano sem caixa/sombra, max-width definido
   pelo wrap pai (.hac-noticia-wrap = 880px). Removidos bg/shadow/radius/
   margin negativo do design antigo. */
.hac-noticia-body{
  position: relative;
  padding: 60px 24px;
}
.hac-noticia-body .hac-container{
  max-width: 820px !important;
  margin: 0 auto;
}
.hac-noticia-body .lead{
  font-size: 20px; line-height: 1.5; color: var(--hac-text);
  margin: 0 0 32px;
  font-weight: 500;
}
.hac-noticia-body p, .hac-noticia-body li{
  font-size: 17px; line-height: 1.7; color: var(--hac-text);
  margin: 0 0 16px;
}
.hac-noticia-body h2, .hac-noticia-body h3, .hac-noticia-body h4{
  color: var(--hac-green-title); line-height: 1.25;
  border-left: 4px solid var(--hac-green);
  padding-left: 16px;
}
.hac-noticia-body h2{ font-size: 28px; margin: 48px 0 16px; }
.hac-noticia-body h3{ font-size: 22px; margin: 36px 0 14px; }
.hac-noticia-body h4{ font-size: 18px; margin: 28px 0 10px; border-left-width: 3px; padding-left: 12px; }
.hac-noticia-body blockquote{
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--hac-green);
  background: #f3f7f3;
  color: var(--hac-green-title);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  border-radius: 0 8px 8px 0;
}
.hac-noticia-body blockquote p{ margin: 0; }
.hac-noticia-body blockquote p + p{ margin-top: 12px; }
.hac-noticia-body ul, .hac-noticia-body ol{ padding-left: 22px; margin: 0 0 16px; }
.hac-noticia-body ul li, .hac-noticia-body ol li{ margin-bottom: 8px; }
.hac-noticia-body a{ color: var(--hac-green); text-decoration: underline; }
.hac-noticia-body a:hover{ color: var(--hac-green-dark); }
.hac-noticia-body img{ max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }
.hac-noticia-tags{ margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--hac-border); }
.hac-noticia-tags .tag{
  display: inline-block; background: #f4f6f8; color: var(--hac-green);
  padding: 4px 12px; border-radius: 12px; margin-right: 8px; font-size: 13px;
}
.hac-noticia-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--hac-border);
}
/* Meta dentro do hero (.hac-noticia-hero) — texto branco com sombra sobre foto */
.hac-noticia-hero .hac-noticia-meta{
  color: #fff;
  background: transparent;
  border-bottom: 0;
  padding: 0;
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.hac-noticia-hero .hac-noticia-tag{
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: var(--hac-green);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}
.hac-noticia-meta .badge{
  background: var(--hac-green-deep);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 6px 20px;
  border-radius: var(--hac-radius-pill);
  letter-spacing: .05em;
}
.hac-noticia-meta .info-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hac-text);
  font-size: 18px;
}
.hac-noticia-meta svg{ width: 22px; height: 22px; color: var(--hac-text); }

.hac-noticia-h1{
  font-size: clamp(32px, 3.8vw, 56px);
  color: var(--hac-green);
  margin-bottom: 32px;
}
.hac-noticia-artigo{
  font-size: 19px;
  line-height: 1.7;
  color: var(--hac-text);
}
.hac-noticia-artigo h2{
  font-size: clamp(26px, 2.2vw, 34px);
  color: var(--hac-green);
  margin: 40px 0 16px;
}
.hac-noticia-artigo h3{
  font-size: clamp(20px, 1.6vw, 24px);
  color: var(--hac-text);
  margin: 32px 0 12px;
}
.hac-noticia-artigo p{ margin: 0 0 20px; }
.hac-noticia-artigo blockquote{
  border-left: 4px solid var(--hac-green);
  padding: 12px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--hac-text-muted);
}

.hac-noticia-nav{
  max-width: 1288px;
  margin: 40px auto 0;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.hac-noticia-nav a{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--hac-text);
  font-weight: 600;
}
.hac-noticia-nav a:hover{ color: var(--hac-green); }

.hac-noticia-related{
  padding: 100px 0;
  background: var(--hac-bg-soft);
  margin-top: 100px;
}
.hac-noticia-related h2{
  color: var(--hac-green);
  text-align: center;
  margin-bottom: 48px;
}

/* Responsivo — páginas internas */
@media (max-width: 991px){
  .hac-page-hero{ padding: 40px 24px 48px; min-height: 360px; }
  .hac-presentation{ padding: 60px 0; }
  .hac-presentation .row-2col{ grid-template-columns: 1fr; gap: 24px; }
  .hac-split{ grid-template-columns: 1fr; gap: 32px; }
  .hac-split.reverse{ direction: ltr; }
  .hac-noticia-body{ padding: 25px 16px; }
  .hac-noticia-nav{ padding: 0 24px; flex-direction: column; }
  .hac-h-table th, .hac-h-table td{ padding: 12px 14px; font-size: 14px; }
  .hac-doc-item{ flex-direction: column; align-items: flex-start; }
}

/* Placeholder image */
.hac-placeholder{
  background: repeating-linear-gradient(
    45deg,
    var(--hac-bg-soft),
    var(--hac-bg-soft) 10px,
    #e4e4e4 10px,
    #e4e4e4 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hac-text-muted);
  font-family: 'Courier New', monospace;
  font-size: 14px;
  text-align: center;
  padding: 24px;
}

/* ============= RESPONSIVIDADE ============= */
/* Resoluções intermediárias (1366×768 inclusive) — navbar quebrava
   em 2 linhas porque padding 136px + textos longos não cabiam.
   Reduz padding-x progressivamente e aperta os triggers. */
@media (max-width: 1500px){
  .hac-navbar .hac-nav-inner{ padding: 0 48px; gap: 12px; }
  .hac-nav-trigger{ padding: 12px 14px; font-size: 17px; }
}
@media (max-width: 1366px){
  .hac-navbar .hac-nav-inner{ padding: 0 24px; gap: 8px; }
  .hac-nav-trigger{ padding: 12px 12px; font-size: 16px; }
  .hac-navbar .hac-logo img{ height: 44px; }
}
@media (max-width: 1200px){
  .hac-navbar .hac-nav-inner{ padding: 0 16px; }
  .hac-navbar .hac-nav-menu a{ padding: 10px 14px; font-size: 16px; }
  .hac-nav-trigger{ font-size: 15px; padding: 10px 10px; }
}
/* Utilitários de visibilidade desktop/mobile no menu (991px = breakpoint do menu mobile) */
.hac-only-mobile{ display: none; }
@media (max-width: 991px){
  .hac-only-desktop{ display: none; }
  .hac-only-mobile{ display: block; }
  .hac-mobile-toggle{ display: inline-flex; }
  /* No mobile o <nav> não precisa ocupar lugar no flex — o menu dropdown
     é position:absolute e flutua a partir do .hac-navbar. Zera a largura
     pra que toggle e busca fiquem encostados no canto direito. */
  .hac-navbar #hac-main-nav{
    flex: 0 0 0;
    width: 0;
    min-width: 0;
  }
  .hac-navbar .hac-mobile-toggle{ margin-left: auto; }
  /* Ícones brancos quando o navbar está em fundo verde (navbar-alt) no mobile */
  body.hac-navbar-alt .hac-mobile-toggle{ color: #fff; }
  body.hac-navbar-alt .hac-search-btn{
    background: transparent;
    color: #fff;
  }
  body.hac-navbar-alt .hac-search-btn:hover{ background: rgba(255,255,255,.15); }
  .hac-navbar .hac-nav-menu{
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 16px;
    box-shadow: var(--hac-shadow);
    gap: 0;
  }
  .hac-navbar .hac-nav-menu.open{ display: flex; }
  .hac-navbar .hac-nav-menu a,
  .hac-navbar .hac-nav-menu .hac-nav-trigger{
    display: block;
    padding: 14px 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--hac-bg-soft);
    color: var(--hac-green) !important;
    background: transparent !important;
    text-align: left;
    width: 100%;
    font-weight: 600;
  }
  .hac-navbar .hac-nav-menu a:hover,
  .hac-navbar .hac-nav-menu .hac-nav-trigger:hover{
    background: rgba(45,143,68,.08) !important;
  }
  .hac-navbar .hac-nav-inner{ position: relative; padding: 0 24px; }
  /* Submenus em modo árvore (inline, expansíveis) no mobile */
  .hac-navbar .hac-nav-item.has-dropdown{
    display: block;
    min-height: 0;
    width: 100%;
  }
  .hac-navbar .hac-nav-menu .hac-nav-trigger{
    position: relative;
    padding-right: 48px;
  }
  .hac-navbar .hac-nav-menu .hac-nav-trigger::after{
    content: '';
    position: absolute;
    right: 22px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform .2s;
  }
  .hac-navbar .hac-nav-menu .hac-nav-trigger[aria-expanded="true"]::after{
    transform: translateY(-35%) rotate(-135deg);
  }
  .hac-navbar .hac-nav-dropdown{
    position: static;
    box-shadow: none;
    border-top: 0;
    background: transparent;
    animation: none !important;
  }
  .hac-navbar .hac-nav-trigger[aria-expanded="true"] + .hac-nav-dropdown{
    animation: none !important;
  }
  .hac-navbar .hac-nav-dropdown-inner{
    padding: 0;
    gap: 0;
    flex-direction: column;
  }
  .hac-navbar .hac-nav-dropdown-title{ display: none; }
  .hac-navbar .hac-nav-dropdown-cols{
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .hac-navbar .hac-nav-dropdown-cols ul{
    padding: 0;
    gap: 0;
    width: 100%;
    max-width: none;
  }
  .hac-navbar .hac-nav-menu .hac-nav-dropdown-cols a{
    display: block;
    padding: 10px 20px 10px 44px;
    border-bottom: 1px solid var(--hac-bg-soft);
    font-size: 14px;
    font-weight: 500;
    color: var(--hac-text) !important;
    text-align: left;
    background: rgba(45,143,68,.04) !important;
  }
  .hac-navbar .hac-nav-menu .hac-nav-dropdown-cols a:hover{
    background: rgba(45,143,68,.10) !important;
    color: var(--hac-green) !important;
  }
  .hac-footer .footer-cols{ grid-template-columns: 1fr; }
  .hac-footer .footer-links{ justify-self: start; }
  .hac-footer .tagline{ text-align: left; }
  .hac-depo-wrap{ grid-template-columns: 1fr; gap: 32px; }
  .hac-depo-thumbs{ grid-template-columns: repeat(4, 1fr); max-width: 360px; margin: 0 auto; }
  .hac-depoimento{ grid-template-columns: 1fr; text-align: center; }
  /* Mobile/tablet: empilha os setores em coluna (full-width). flex:0 0 auto é
     essencial — com flex:1 1 0 herdado, o flex-basis 0 no eixo vertical zera a
     altura e o bloco "some". */
  .hac-setores{ flex-direction: column; }
  .hac-setor{ flex: 0 0 auto; height: 300px; }
  .hac-setor:hover{ flex-grow: 0; }
  .hac-setor-title{ transform: rotate(0deg); position: absolute; left: 24px; bottom: 24px; }
}
@media (max-width: 640px){
  .hac-hero-carousel{ padding: 20px; }
  .hac-search-input{ font-size: 16px; padding: 12px 48px 12px 24px; }
  .hac-fale-conosco,
  .hac-depoimentos,
  .hac-noticias,
  .hac-siga,
  .hac-premios{ padding: 60px 0; }
  .hac-footer{ padding: 48px 0 0; }
  .hac-footer-bottom{ flex-direction: column; align-items: flex-start; }
  .hac-setor{ flex: 0 0 auto; height: 220px; }
}


/* ============================================================
   SOBRE — Timeline Nossa História (grid 3 colunas, 500×500)
   ============================================================ */
.hac-sobre-hist{
  padding: 100px 0 150px;
  background: #fff;
}
.hac-sobre-hist .hist-head{
  max-width: 1500px; margin: 0 auto 80px; padding: 0 136px;
  display:flex; flex-direction:column; gap:24px;
}
.hac-sobre-hist .hist-head .kicker{
  color: var(--hac-green); font-weight:700; font-size:36px; line-height:1; text-transform:uppercase;
  letter-spacing:-.01em;
}
.hac-sobre-hist .hist-head .lead{
  color: var(--hac-text); font-weight:500; font-size:24px; line-height:1.1; max-width:540px;
}
.hac-timeline{
  width: 1500px; max-width: calc(100% - 32px); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 500px;
  overflow: hidden;
}
/* No desktop o wrapper de evento é transparente: as células fluem direto no
   grid 3xN (serpentina). No mobile vira flex column (ver media query). */
.hac-timeline .tl-event{ display: contents; }
.tl-cell{
  position: relative;
  padding: 80px 58px 89px 50px;
  display: flex; flex-direction: column; justify-content: flex-start;
  background: #fff;
}
.tl-cell.year-dark{ background: var(--hac-green); color:#fff; }
.tl-cell.year-light{ background: var(--hac-green-light); color:#fff; }
.tl-cell.year-dark .year, .tl-cell.year-light .year{
  font-weight:700; font-size:64px; line-height:1; color:#fff;
}
.tl-cell.text h3{
  font-weight:700; font-size:36px; line-height:1; color: var(--hac-green);
  margin: 0 0 24px 0; text-transform: uppercase;
}
.tl-cell.text p{
  font-weight:500; font-size:22px; line-height:1.2; color: var(--hac-text); margin:0;
}
.tl-cell.photo{
  background-size: cover; background-position: center; padding: 0;
}
.tl-cell.green-solid{ background: var(--hac-green); }
.tl-cell.green-light-solid{ background: var(--hac-green-light); }
@media (max-width: 1200px){
  /* Mobile: cada evento vira uma coluna independente, em ordem fixa
     ANO → TEXTO → FOTO (independente da ordem da serpentina do desktop). */
  .hac-timeline{ grid-template-columns: 1fr; grid-auto-rows: auto; }
  .hac-timeline .tl-event{ display: flex; flex-direction: column; margin-top: 30px; border: solid 2px #333;}
  .tl-cell{ min-height: 0; padding: 32px; }
  .tl-cell.year-dark, .tl-cell.year-light{ order: 1; padding: 18px 32px; }
  .tl-cell.text{ order: 2; }
  .tl-cell.photo{ order: 3; min-height: 240px; padding: 0; }
  /* Células decorativas (sem conteúdo) não fazem sentido em coluna única */
  .tl-cell.green-solid, .tl-cell.green-light-solid{ display: none; }
  .tl-cell.text p{ font-size:18px; }
  .tl-cell.text h3{ font-size:26px; }
  .tl-cell.year-dark .year,.tl-cell.year-light .year{ font-size:48px; }
}

/* Seção Apresentação Sobre (verde + foto sobreposta) */
.hac-sobre-photo-band{
  position: relative; background:#fff;
  padding: 0; margin-top: 0;
}
.hac-sobre-photo-band .green-band{
  height: 320px; background: var(--hac-green); width:100%;
}
.hac-sobre-photo-band .photo{
  width: 1106px; max-width: calc(100% - 272px);
  aspect-ratio: 1106/989;
  background-size: cover; background-position: center;
  margin: -201px auto 0; display:block;
}
.hac-sobre-photo-band.tall .photo{ max-width: calc(100% - 192px); width: 1100px; aspect-ratio: 1323/945;}

/* Valores / Missão em linhas */
.hac-values-rows{ padding: 100px 136px; background:#fff; }
.hac-values-rows .row-block{
  max-width: 1648px; margin: 0 auto; padding-bottom: 100px;
  display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start;
}
.hac-values-rows .row-block:last-child{ padding-bottom: 0; }
.hac-values-rows .row-block h2{
  font-weight:700; font-size:30px; line-height:1.1; color: var(--hac-text); margin:0;
}
.hac-values-rows .row-block p,
.hac-values-rows .row-block ul{
  font-size:20px; line-height:1.3; color: var(--hac-text); margin:0;
}
.hac-values-rows .row-block ul{ padding-left: 1.2em; }
.hac-values-rows .row-block ul li{ margin-bottom: 8px; }
.hac-values-rows .row-block strong{ font-weight: 700; color: var(--hac-text); }
.hac-values-rows .row-block p + p{ margin-top: 16px; }
@media (max-width: 992px){
  .hac-values-rows{ padding-left: 0; padding-right: 0; }
  .hac-values-rows .row-block{ grid-template-columns: 1fr; padding: 0 24px 48px; gap:16px; }
  .hac-values-rows .row-block h2{ font-size: 28px; }
  .hac-values-rows .row-block p, .hac-values-rows .row-block ul{ font-size: 18px; }
}

/* CTA cards (Conheça a UniCaron / DEP) — só dentro do container .hac-cta-pills (plural) */
.hac-cta-pills{ display:flex; gap:20px; flex-wrap:wrap; margin-top: 48px; }
.hac-cta-pills.botoes {flex-wrap: nowrap;}



.hac-cta-pills .hac-cta-pill{
  flex: 1 1 400px;
  padding: 30px; border-radius: 60px; border: 1px solid currentColor;
  font-weight:700; font-size:15px; line-height:1; color: var(--hac-green);
  text-decoration:none; display:inline-flex; align-items:center; justify-content:space-between; gap:16px;
  transition: background .2s ease, color .2s ease;
  max-width: 340px;
}

.hac-cta-pills.botoes > .hac-cta-pill{
    flex: 1 1 400px;
    padding: 25px;
    border-radius: 60px;
    border: 1px solid currentColor;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    color: var(--hac-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 45px;
    transition: background .2s ease, color .2s ease;
    max-width: 339px;
}

.hac-cta-pills .hac-cta-pill.filled{ background: var(--hac-green); color:#fff; border-color: var(--hac-green); }
.hac-cta-pills .hac-cta-pill:hover{ background: var(--hac-green); color:#fff; }
.hac-cta-pills .hac-cta-pill.filled:hover{ background: var(--hac-green-dark); }

/* ============================================================
   HORÁRIOS DE VISITAS — Tabs + cards grid
   ============================================================ */
.hac-visitas-atencao{
  background: var(--hac-green); color:#fff;
  padding: 120px 136px;
}
.hac-visitas-atencao .row{
  max-width: 1648px; margin: 0 auto;
  display:grid; grid-template-columns: 325px 1fr; gap: 165px; align-items:start;
}
.hac-visitas-atencao h2{ font-weight:700; font-size:48px; line-height:1; color:#fff; margin:0; }
.hac-visitas-atencao p{ font-size:22px; line-height:1.2; color:#fff; margin:0; max-width:1158px; }
.hac-visitas-atencao p strong{ font-weight:700; }
@media (max-width: 992px){
  .hac-visitas-atencao{ padding: 60px 24px; }
  .hac-visitas-atencao .row{ grid-template-columns:1fr; gap:16px; }
  .hac-visitas-atencao h2{ font-size:32px; }
  .hac-visitas-atencao p{ font-size:18px; }
}

.hac-visitas-section{
  padding: 100px 136px 80px; background:#fff;
}
.hac-visitas-group{
  max-width: 1648px; margin: 0 auto 64px;
}
.hac-visitas-head{
  width: 100%; appearance: none; background: transparent;
  border: 0; border-bottom: 2px solid var(--hac-text);
  font: inherit; color: inherit; text-align: left;
  display:flex; justify-content:space-between; align-items:center;
  padding: 24px 0;
  cursor: pointer; user-select:none;
}
.hac-visitas-head:hover h2{ color: var(--hac-green); }
.hac-visitas-head h2{
  font-weight:700; font-size:32px; line-height:1; color: var(--hac-text); margin:0;
}
.hac-visitas-head .chev{
  transition: transform .25s ease; color: var(--hac-text);
}
.hac-visitas-head[aria-expanded="false"] .chev{ transform: rotate(-90deg); }
.hac-visitas-head[aria-expanded="false"] + .hac-visitas-grid{ display:none; }

.hac-visitas-grid{
  padding: 48px 0 0;
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.hac-visita-card{
  border-radius: 20px; border: 1px solid var(--hac-border);
  padding: 32px; background: #fff;
  display:flex; flex-direction:column; gap:8px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.hac-visita-card:hover{ box-shadow: var(--hac-shadow); transform: translateY(-2px); }
.hac-visita-card h3{ font-weight:700; font-size:22px; color: var(--hac-green-title); margin:0 0 4px; line-height:1.1; }
.hac-visita-card .horario{
  font-weight:600; font-size:22px; color: var(--hac-green); line-height:1.1; margin:0 0 16px;
}
.hac-visita-card .horario.suspenso{ color: var(--hac-text); }
.hac-visita-card .nota{
  display:flex; gap:8px; align-items:flex-start;
  font-size:14px; color: var(--hac-text-muted); margin:0; line-height:1.4;
}
.hac-visita-card .nota svg{ flex:none; margin-top:2px; }
.hac-visita-card .atencao{ color: #C23B3B; font-weight:600; }
@media (max-width: 768px){
  .hac-visitas-section{ padding: 48px 24px; }
  .hac-visitas-grid{ grid-template-columns: 1fr; gap: 16px; padding-top: 24px;}
  .hac-visitas-head h2{ font-size:22px; }
}


/* ============================================================
   GOVERNANÇA — Sections with accordion heads, featured card, doc grid
   ============================================================ */
.hac-gov-atencao{ background: var(--hac-green); color:#fff; padding: 120px 136px; }
.hac-gov-atencao .row{
  max-width: 1648px; margin: 0 auto;
  display:grid; grid-template-columns: 325px 1fr; gap: 165px; align-items:start;
}
.hac-gov-atencao h2{ font-weight:700; font-size:36px; line-height:1.1; color:#fff; margin:0; }
.hac-gov-atencao p{ font-size:24px; line-height:1.2; color:#fff; margin:0 0 12px; max-width:1158px; }
.hac-gov-atencao p strong{ font-weight:700; color:#fff; }
@media (max-width: 992px){
  .hac-gov-atencao{ padding: 60px 24px; }
  .hac-gov-atencao .row{ grid-template-columns:1fr; gap:16px; }
  .hac-gov-atencao h2{ font-size:26px; }
  .hac-gov-atencao p{ font-size:18px; }
}

/* GOVERNANÇA — alinhado ao Figma 48:1684/3025 (Documentos)
   Borda dos cards: 1px solid #888 (Darkest-Neutral) — não --hac-border (#DDD).
   Título h2: 36px Bold (cabeçalho accordion). Linha completa abaixo.
   Card destaque: 40px padding, radius 20, capa 300×425.
   Card lista: 40px padding, radius 20, capa 200×283.
   Botão Baixar: 60px radius, padding 15/40, 24px Bold, shadow 0 4px 2px. */
.hac-gov-section{ padding: 80px 136px 120px; background:#fff; }
.hac-gov-block{ max-width:1648px; margin: 0 auto 64px; }
/* offset p/ links âncora (#certidoes/#editais/#projetos) não ficarem sob a navbar sticky */
.hac-gov-block[id]{ scroll-margin-top: 96px; }
.hac-gov-head{
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding: 12px 0;
  cursor: pointer; background:none; border:0; border-bottom: 2px solid var(--hac-text); width:100%;
  font-weight:700; font-size:36px; line-height:1; color: var(--hac-text);
  text-align:left;
}
.hac-gov-head .chev{ transition: transform .25s ease; flex:none; width:28px; height:28px; font-size:24px; line-height:1; display:inline-flex; align-items:center; justify-content:center; }
.hac-gov-head[aria-expanded="false"] .chev{ transform: rotate(-90deg); }
.hac-gov-head[aria-expanded="false"] + .hac-gov-body{ display:none; }
.hac-gov-body{ padding: 48px; }

.hac-gov-featured{
  display:grid; grid-template-columns: 300px 1fr; gap: 40px;
  padding: 40px; border: 1px solid #888; border-radius: 20px;
  background: #fff; align-items: flex-start;
}
.hac-gov-featured .cover{
  aspect-ratio: 300/425;
  background: var(--hac-bg-soft); background-size:cover; background-position:center;
  border-radius: 8px;
}
.hac-gov-featured h3{ font-weight:700; font-size:24px; color:var(--hac-green-title); margin:0 0 16px; line-height:1.2; }
.hac-gov-featured p{ font-size:18px; line-height:1.45; color:var(--hac-text); margin:0 0 28px; }
.hac-gov-featured .actions{ display:flex; justify-content:flex-start; }

/* Botão Baixar — pill verde com shadow + ícone circle-down */
.hac-btn-download{
  display:inline-flex; align-items:center; gap:12px;
  padding: 15px 40px; border-radius: 60px;
  background: var(--hac-green); color:#fff; font-weight:700; font-size:20px;
  text-decoration:none;
  box-shadow: 0 4px 2px rgba(0,0,0,.25);
  transition: background .2s ease, transform .15s ease;
}
.hac-btn-download:hover{
  background: var(--hac-green-dark); color:#fff;
  transform: translateY(-1px);
}
.hac-btn-download svg,
.hac-btn-download i{ width:24px; height:24px; flex:none; font-size:24px; line-height:1; }

.hac-gov-doclist{
  display:grid; grid-template-columns: 1fr; gap: 16px; margin-top: 48px;
}
.hac-gov-docrow{
  display:flex; justify-content:space-between; align-items:center; gap:24px;
  padding: 24px 32px; border: 1px solid var(--hac-border); border-radius: 16px; background:#fff;
  transition: box-shadow .2s ease;
}
.hac-gov-docrow:hover{ box-shadow: var(--hac-shadow); }
.hac-gov-docrow h3{ font-weight:600; font-size:22px; margin:0; color:var(--hac-green-title); }

.hac-gov-policies{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 32px;
}
/* Card de política — Figma: borda #888, radius 20, padding 40, ícone à esquerda + body à direita.
   Título preto (Text-Body), descrição preta, botão verde no canto. */
.hac-gov-policy{
  padding: 40px; border: 1px solid #888; border-radius: 20px; background:#fff;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  align-items:start;
  transition: box-shadow .2s ease;
}
.hac-gov-policy:hover{ box-shadow: var(--hac-shadow); }
.hac-gov-policy .ic{
  width: 56px; height: 64px; flex:none;
  color: var(--hac-text);   /* preto — Figma usa Text-Body para todos os ícones desta página */
  display:flex; align-items:center; justify-content:center;
  font-size: 48px;
}
.hac-gov-policy .ic i{ display:block; }
.hac-gov-policy .ic.ic--pdf{ color: var(--hac-text); }
.hac-gov-policy .body{
  display:flex; flex-direction:column; gap:16px;
}
.hac-gov-policy h3{ font-weight:700; font-size:24px; color: var(--hac-green-title); margin:0; line-height:1.2; }
.hac-gov-policy p{ font-size:18px; color: var(--hac-text); margin:0; line-height:1.45; }
.hac-gov-policy .hac-btn-download,
.hac-gov-policy .hac-btn-acessar{ align-self:flex-start; margin-top:8px; }

/* Variante full-width (Canal de Ética dentro do mesmo accordion). */
.hac-gov-policy--full{
  grid-column: 1 / -1;
  margin-bottom: 32px;
}
/* Ícones desta página são pretos por padrão — herda .hac-gov-policy .ic */

/* Canal de Ética — card único com ícone à esquerda */
.hac-gov-canal-etica{
  margin-top: 32px; padding: 32px;
  border: 1px solid var(--hac-border); border-radius: 20px; background:#fff;
  display:flex; gap:24px; align-items:flex-start;
  transition: box-shadow .2s ease;
}
.hac-gov-canal-etica:hover{ box-shadow: var(--hac-shadow); }
.hac-gov-canal-etica .ic{
  flex:0 0 64px; width:64px; height:64px;
  display:flex; align-items:center; justify-content:center;
  border:1.5px solid var(--hac-green); border-radius:12px;
  color: var(--hac-green);
}
.hac-gov-canal-etica-body{ flex:1; display:flex; flex-direction:column; gap:12px; }
.hac-gov-canal-etica-body h3{
  font-weight:700; font-size:24px; color: var(--hac-green); margin:0; line-height:1.1;
}
.hac-gov-canal-etica-body p{ font-size:18px; color: var(--hac-text); margin:0; line-height:1.4; }
/* Acessar — mesmo visual do Baixar (filled verde + shadow), só muda o label/ícone */
.hac-btn-acessar{
  display:inline-flex; align-items:center; gap:12px;
  padding: 15px 40px; border-radius: 60px;
  background: var(--hac-green); color:#fff; font-weight:700; font-size:20px;
  text-decoration:none; border: 0;
  box-shadow: 0 4px 2px rgba(0,0,0,.25);
  transition: background .2s ease, transform .15s ease;
}
.hac-btn-acessar:hover{
  background: var(--hac-green-dark); color:#fff;
  transform: translateY(-1px);
}
.hac-btn-acessar svg,
.hac-btn-acessar i{ width:24px; height:24px; flex:none; font-size:24px; line-height:1; }

/* PDF cards — Figma: grid 2 col, padding 40, border #888, radius 20.
   Layout interno: ícone à esquerda (coluna 1), title/p/botão empilhados à direita (coluna 2).
   Usa CSS Grid com ícone span-rows pra h3/p/a empilharem mesmo sem wrapper div. */
.hac-gov-pdfgrid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 24px;
}
.hac-gov-pdfcard{
  padding: 40px;
  border: 1px solid #888; border-radius: 20px; background:#fff;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 32px;
  row-gap: 12px;
  align-items: start;
  align-content: start;
  transition: box-shadow .2s ease;
}
.hac-gov-pdfcard:hover{ box-shadow: var(--hac-shadow); }
.hac-gov-pdfcard .ic{
  grid-column: 1; grid-row: 1 / -1;
  width:56px; height:64px;
  display:flex; align-items:center; justify-content:center;
  color: var(--hac-text);   /* preto — uniforme em toda a página */
  font-size: 48px;
}
.hac-gov-pdfcard .ic i{ display:block; }
.hac-gov-pdfcard .ic.x{ color:#1a1a1a; }
.hac-gov-pdfcard h3,
.hac-gov-pdfcard p,
.hac-gov-pdfcard .hac-btn-download,
.hac-gov-pdfcard .hac-btn-acessar{ grid-column: 2; }
.hac-gov-pdfcard h3{ font-weight:700; font-size:24px; margin:0; color:var(--hac-green-title); line-height:1.2; }
.hac-gov-pdfcard p{ font-size:18px; color: var(--hac-text); margin:0; line-height:1.45; }
.hac-gov-pdfcard p.venc{ font-size:16px; color: var(--hac-text-muted); margin-top:-4px; }
.hac-gov-pdfcard .hac-btn-download,
.hac-gov-pdfcard .hac-btn-acessar{ justify-self:start; margin-top:16px; }

/* variante com capa do relatório — capa 200×283 lateral à esquerda;
   substitui o ícone (coluna 1 mais larga). */
.hac-gov-pdfcard.withcover{
  padding: 40px;
  grid-template-columns: 200px 1fr;
}
.hac-gov-pdfcard.withcover .cov{
  grid-column: 1; align-self: start;
  width:200px; aspect-ratio: 200/283;
  background-size:cover; background-position:center;
  border-radius: 8px; border: 1px solid var(--hac-border);
  background-color: var(--hac-bg-soft);
}
/* título + (descrição) + botão empilhados na coluna 2 — vale para TODOS os
   pdfcards (com ou sem capa), garantindo o botão logo abaixo do título. */
.hac-gov-pdfcard .cw{
  grid-column: 2; align-self: start;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.hac-gov-pdfcard .cw .hac-btn-download,
.hac-gov-pdfcard .cw .hac-btn-acessar{ margin-top: 0; }
.hac-gov-pdfcard .cw p.venc{ margin-top: 0; }
.hac-gov-pdfcard.withcover h3{ font-size: 24px; margin: 0; }

/* Filtro de ano */
.hac-gov-anofilter{
  display:flex; align-items:center; gap:16px; margin-top: 40px; flex-wrap:wrap;
}
.hac-gov-anofilter .label{ font-size:14px; color: var(--hac-text); }
.hac-gov-anofilter .pills{ display:flex; gap:8px; flex-wrap:wrap; }
.hac-gov-anofilter .pill{
  border:1px solid var(--hac-green); background:#fff; color: var(--hac-green);
  border-radius: 999px; padding: 6px 16px; font-size:14px; font-weight:500; cursor:pointer;
  transition: all .15s ease;
}
.hac-gov-anofilter .pill.active,
.hac-gov-anofilter .pill:hover{ background: var(--hac-green); color:#fff; }

/* Subgrupo "Edições Anteriores" aninhado abaixo do item destaque */
.hac-gov-subgroup{ margin-top: 40px; padding-top: 32px; border-top: 1px solid #ddd; }
.hac-gov-subgroup > h4{
  font-size: 22px; font-weight: 700; color: var(--hac-green-title); margin: 0;
}
.hac-gov-subgroup .hac-gov-anofilter{ margin-top: 24px; }
.hac-gov-subgroup .hac-gov-pdfgrid{ margin-top: 24px; }

@media (max-width: 992px){
  .hac-gov-section{ padding: 48px 24px; }
  .hac-gov-featured{ grid-template-columns: 1fr; padding:24px; }
  .hac-gov-policies{ grid-template-columns: 1fr; }
  .hac-gov-pdfgrid{ grid-template-columns: 1fr; }
  .hac-gov-head{ font-size:22px; }
  .hac-gov-featured h3{ font-size:24px; }
}

/* ============================================================
   ESTRUTURA — green band + photo + stat blocks + big numbers
   ============================================================ */
.hac-est-intro{ background:#fff; position:relative; padding-bottom: 0; }
.hac-est-intro .green-bg{ background: var(--hac-green); padding: 120px 136px 200px; }
.hac-est-intro .green-bg .row{
  max-width:1648px; margin:0 auto; display:grid; grid-template-columns: 859px 1fr; gap:129px; align-items:center;
}
.hac-est-intro .green-bg .photo{ aspect-ratio: 859/889; background-size:cover; background-position:center; }
.hac-est-intro .green-bg h2{ font-weight:700; font-size:25px; line-height:1.1; color:#fff; margin: 0 0 30px; }
.hac-est-intro .green-bg p{ font-size:16px; line-height:1.2; color:#fff; margin:0; }
.hac-est-intro .white-bg{ padding: 80px 136px; background:#fff; }
.hac-est-intro .white-bg .row{
  max-width:1648px; margin:0 auto; display:grid; grid-template-columns: 1fr 859px; gap:129px; align-items:center;
}
.hac-est-intro .white-bg .photo{ aspect-ratio: 859/889; background-size:cover; background-position:center; order:2;}
.hac-est-intro .white-bg .content{ order:1; }
.hac-est-intro .white-bg h2{ font-weight:700; font-size:25px; line-height:1.1; color: var(--hac-green-title); margin: 0 0 30px;}
.hac-est-intro .white-bg p{ font-size:16px; line-height:1.2; color:var(--hac-text); margin:0; }
/* V2 modifier — intro sem foto (texto-only em 2 colunas: título à esquerda, parágrafo à direita).
   Reduz padding vertical já que a foto não ocupa mais o espaço. */
.hac-est-intro.hac-est-intro--textonly .green-bg{ padding: 100px 136px; }
.hac-est-intro.hac-est-intro--textonly .green-bg .row{
  grid-template-columns: 1fr 2fr; gap: 20px; align-items: start;
}
.hac-est-intro.hac-est-intro--textonly .white-bg{ padding: 100px 136px; }
.hac-est-intro.hac-est-intro--textonly .white-bg .row{
  grid-template-columns: 1fr 2fr; gap: 20px; align-items: start;
}

/* Modifier que reserva espaço (padding-bottom extra) para foto overlap abaixo.
   Usado quando a próxima seção é um .hac-esp-overlap-photo (helicóptero / vista aérea). */
.hac-est-intro--with-overlap .green-bg{ padding-bottom: 180px !important; }
.hac-est-stats.hac-est-stats--with-overlap{ padding-bottom: 180px; }

@media (max-width: 1100px){
  .hac-est-intro .green-bg, .hac-est-intro .white-bg{ padding: 48px 24px; }
  .hac-est-intro .green-bg .row, .hac-est-intro .white-bg .row{ grid-template-columns:1fr; gap:32px; }
  .hac-est-intro .white-bg .photo{ order: 0; }
  .hac-est-intro h2{ font-size:26px !important; }
  .hac-est-intro p{ font-size:18px !important; }
  .hac-est-intro.hac-est-intro--textonly .green-bg,
  .hac-est-intro.hac-est-intro--textonly .white-bg{ padding: 48px 24px; }
  .hac-est-intro.hac-est-intro--textonly .green-bg .row,
  .hac-est-intro.hac-est-intro--textonly .white-bg .row{ grid-template-columns: 1fr; gap: 24px; }
  .hac-est-intro--with-overlap .green-bg{ padding-bottom: 120px !important; }
  .hac-est-stats.hac-est-stats--with-overlap{ padding-bottom: 120px; }
}

.hac-est-stats{
  background: var(--hac-green); padding: 60px 136px;
}
.hac-est-stats .row{
  max-width:1648px; margin:0 auto; display:grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.hac-est-stats .item{ display:flex; gap: 32px; align-items:flex-start; }
.hac-est-stats .item .ico{
  width: 115px; height: 115px; flex:none;
  display:flex; align-items:center; justify-content:center;
}
.hac-est-stats .item .ico img{ width:100%; height:100%; display:block; }
.hac-est-stats .item p{ font-weight:400; font-size:26px; line-height:1.1; color: #fff; margin:0; }
.hac-est-stats .item p strong{ font-weight:700; }
@media (max-width: 992px){
  .hac-est-stats{ padding: 32px 24px; }
  .hac-est-stats .row{ grid-template-columns:1fr; gap:24px; }
  .hac-est-stats .item p{ font-size: 18px; }
}

.hac-est-capacidade{
  padding: 100px 136px; background:#fff;
}
.hac-est-capacidade .row{
  max-width: 1648px; margin:0 auto;
  display:grid; grid-template-columns: 325px 1fr; gap: 20px; align-items:start;
}
.hac-est-capacidade h2{ font-weight:700; font-size:25px; line-height:1.1; color:var(--hac-green-title); margin:0; }
.hac-est-capacidade p{ font-size:18px; line-height:1.3; color:var(--hac-text); margin:0 0 40px; max-width:1158px; }
.hac-est-capacidade p strong{ font-weight:700; color: var(--hac-green); }
@media (max-width: 992px){
  .hac-est-capacidade{ padding: 60px 24px; }
  .hac-est-capacidade .row{ grid-template-columns:1fr; gap:16px; }
  .hac-est-capacidade h2{ font-size:26px; }
  .hac-est-capacidade p{ font-size:18px; }
}

/* Big number tiles — mosaico colorido */
.hac-est-numbers{ padding: 100px 136px; background:#fff; }
.hac-est-numbers-grid{
  max-width:1648px; margin: 0 auto;
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.hac-bignum{
  display:flex; flex-direction:column; gap:8px; padding: 40px 32px;
  border-radius: 20px; min-height: 220px;
  justify-content: center;
  position: relative; overflow: hidden;
}
.hac-bignum .n{ font-weight:800; font-size:56px; line-height:1; }
.hac-bignum .l{ font-weight:600; font-size:18px; line-height:1.25; }

/* Variantes cromáticas (alternam pela ordem do mosaico) */
.hac-bignum--green{ background: var(--hac-green); color: #fff; }
.hac-bignum--green .n,
.hac-bignum--green .l{ color: #fff; }

.hac-bignum--green-deep{ background: var(--hac-green-deep); color: #fff; }
.hac-bignum--green-deep .n,
.hac-bignum--green-deep .l{ color: #fff; }

.hac-bignum--green-mid{ background: var(--hac-green-mid); color: #fff; }
.hac-bignum--green-mid .n,
.hac-bignum--green-mid .l{ color: #fff; }

.hac-bignum--green-light{ background: var(--hac-green-light); color: var(--hac-green-deep); }
.hac-bignum--green-light .n,
.hac-bignum--green-light .l{ color: var(--hac-green-deep); }

.hac-bignum--orange{ background: #E07A2A; color: #fff; }
.hac-bignum--orange .n,
.hac-bignum--orange .l{ color: #fff; }

.hac-bignum--white{
  background: #fff; color: var(--hac-text);
  border: 1px solid var(--hac-border);
}
.hac-bignum--white .n{ color: var(--hac-green); }
.hac-bignum--white .l{ color: var(--hac-text); }

/* Tamanho largo para destaque */
.hac-bignum--wide{ grid-column: span 2; }

@media (max-width: 1100px){
  .hac-est-numbers-grid{ grid-template-columns: repeat(2, 1fr); }
  .hac-bignum--wide{ grid-column: span 2; }
}
@media (max-width: 600px){
  .hac-est-numbers{ padding:48px 24px; }
  .hac-est-numbers-grid{ grid-template-columns: 1fr; }
  .hac-bignum .n{ font-size: 40px; }
  .hac-bignum--wide{ grid-column: auto; }
}

/* Diretor section */
.hac-est-diretor{
  background: var(--hac-bg-light); padding: 100px 136px;
}
.hac-est-diretor .row{
  max-width:1648px; margin:0 auto; display:grid; grid-template-columns: 400px 1fr; gap: 80px; align-items:center;
}
.hac-est-diretor .photo{ aspect-ratio: 1/1; background-size:cover; background-position:center; border-radius: 20px; background-color: var(--hac-bg-soft); }
.hac-est-diretor .tag{ font-weight:600; color: var(--hac-green); text-transform:uppercase; font-size:18px; letter-spacing:.05em; margin:0 0 16px; }
.hac-est-diretor h2{ font-weight:700; font-size:40px; color: var(--hac-green-title); margin: 0 0 24px; line-height:1.1; }
.hac-est-diretor p{ font-size:20px; line-height:1.4; color:var(--hac-text); margin:0 0 16px; }
@media (max-width: 992px){
  .hac-est-diretor{ padding:48px 24px; }
  .hac-est-diretor .row{ grid-template-columns:1fr; gap:32px; }
  .hac-est-diretor h2{ font-size:26px; }
  .hac-est-diretor p{ font-size:18px; }
}

/* Selos / Acreditações */
.hac-est-selos{ padding: 100px 136px; background:#fff; }
.hac-est-selos .head{ max-width:1648px; margin:0 auto 48px; }
.hac-est-selos h2{ font-weight:700; font-size:25px; color:var(--hac-green-title); margin:0 0 16px; line-height:1.1; }
.hac-est-selos p{ font-size:20px; color:var(--hac-text); margin:0; line-height:1.3; max-width: 900px; }
.hac-est-selos-grid{
  max-width:1648px; margin:0 auto;
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.hac-selo{
  aspect-ratio: 1/1; border:1px solid var(--hac-border); border-radius: 20px;
  display:flex; align-items:center; justify-content:center; padding: 24px;
  color: var(--hac-green); font-weight:700; font-size: 20px; text-align:center; background:#fff;
  transition: box-shadow .2s ease, transform .2s ease;
}
.hac-selo:hover{ box-shadow: var(--hac-shadow); transform: translateY(-2px); }
@media (max-width: 1100px){ .hac-est-selos-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .hac-est-selos{ padding:48px 24px; } .hac-est-selos-grid{ grid-template-columns: 1fr; } }

/* ============= ESPECIALIDADES E SERVIÇOS (estrutura) ============= */
.hac-est-esp{ padding: 80px 0 40px; background:#fff; }
.hac-est-esp h2{
  text-align: center; color: var(--hac-green);
  font-weight:700; font-size: 30px; margin: 0 0 40px; line-height:1.1;
}
.hac-est-esp-search{
  max-width: 1648px; margin: 0 auto 24px; padding: 0 136px;
}
.hac-est-esp-search .searchbar{
  background: var(--hac-green);
  border-radius: 999px;
  padding: 16px 24px;
  display: flex; align-items: center; gap: 16px;
}
.hac-est-esp-search input{
  flex: 1;
  background: #fff;
  border: 0; outline: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: inherit; font-size: 16px; color: var(--hac-text);
}
.hac-est-esp-search input::placeholder{ color: #9a9a9a; }
.hac-est-esp-search svg{ color: #fff; flex:0 0 auto; }
.hac-est-esp-search-btn{
  flex:0 0 auto; background:transparent; border:0; padding:0;
  display:inline-flex; align-items:center; cursor:pointer; color:#fff;
}
.hac-est-esp-filters{
  max-width: 1648px; margin: 0 auto; padding: 0 136px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  justify-content: center;
}
.hac-est-esp-filters .label{
  color: var(--hac-text); font-size: 14px; margin-right: 8px;
}
.hac-est-esp-filters .pills{
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hac-est-esp-filters .pill{
  border: 1px solid var(--hac-green);
  background: transparent;
  color: var(--hac-green);
  font-family: inherit; font-weight:600; font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
}
.hac-est-esp-filters .pill:hover{ background: var(--hac-bg-soft); color: var(--hac-green); }
.hac-est-esp-filters .pill.active{
  background: var(--hac-green); color: #fff;
}
@media (max-width: 992px){
  .hac-est-esp{ padding: 48px 0 24px; }
  .hac-est-esp-search, .hac-est-esp-filters{ padding: 0 24px; }
  .hac-est-esp h2{ font-size: 16px; margin-bottom: 24px; }
  .hac-est-esp-filters{ justify-content: flex-start; }
}

/* ============= BLOCO 2 COLUNAS (Tecnologia / Equipe MP / Alimentação) ============= */
.hac-est-bloco-2col{
  padding: 64px 136px;
  background: #fff;
}
.hac-est-bloco-2col .row{
  max-width: 1648px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 80px;
  align-items: start;
}
.hac-est-bloco-2col h2{
  font-weight: 700; font-size: 25px; line-height: 1.1;
  color: var(--hac-green-title); margin: 0;
}
.hac-est-bloco-2col .content p{
  font-size: 18px; line-height: 1.3; color: var(--hac-text);
  margin: 0 0 24px;
}
.hac-est-bloco-2col .content p strong{ font-weight: 700; color: var(--hac-green); }
.hac-est-bloco-2col .content p:last-of-type{ margin-bottom: 24px; }
.hac-est-bloco-2col .hac-cta-pills{ margin-top: 24px; }
@media (max-width: 992px){
  .hac-est-bloco-2col{ padding: 40px 24px; }
  .hac-est-bloco-2col .row{ grid-template-columns: 1fr; gap: 16px; }
  .hac-est-bloco-2col h2{ font-size: 26px; }
}

/* ============= BANDA 4 FOTOS ============= */
.hac-est-fotos-band{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 32px 16px;
  background: #fff;
}
.hac-est-fotos-band .foto{
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  background-color: #ddd;
  border-radius: 4px;
}
@media (max-width: 992px){
  .hac-est-fotos-band{ grid-template-columns: repeat(2, 1fr); padding: 16px 16px; gap: 8px; }
}

/* ============= EQUIPE ASSISTENCIAL (estrutura) ============= */
.hac-est-equipe{ padding: 80px 0 0; background:#fff; }
.hac-est-equipe .head{ max-width: 1648px; margin: 0 auto 48px; padding: 0 136px; text-align:center; }
.hac-est-equipe .head h2{
  font-weight:700; font-size:30px; color: var(--hac-green);
  margin: 0 0 8px; line-height: 1.1;
}
.hac-est-equipe .head p{
  font-size:18px; color: var(--hac-text); margin:0; line-height:1.4;
}
.hac-est-equipe-band{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.hac-est-medico{
  flex: 1 1 0;
  min-width: 80px;
  height: 660px;
  position: relative;
  background-size: cover;
  background-position: center top;
  background-color: #ddd;
  display: block;
  color: #fff;
  overflow: hidden;
  text-decoration: none;
  transition: flex-grow .5s ease;
}
.hac-est-medico::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,.8) 100%);
  transition: background .3s;
}
.hac-est-medico:hover{ flex-grow: 2.4; }
.hac-est-medico:hover::before{
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.85) 100%);
}
.hac-est-medico .nome{
  position: absolute;
  left: 32px;
  bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  transform-origin: left bottom;
  transform: rotate(-90deg);
  transition: transform .35s ease;
  z-index: 1;
}
.hac-est-medico:hover .nome{ transform: rotate(0deg); }
@media (max-width: 1199px){
  .hac-est-medico{ height: 380px; }
}
@media (max-width: 992px){
  .hac-est-equipe .head{ padding: 0 24px; }
  .hac-est-equipe-band{ flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; }
  .hac-est-medico{ flex: 0 0 40%; height: 200px; scroll-snap-align: start; }
  .hac-est-medico:hover{ flex-grow: 1; }
  .hac-est-medico .nome{ transform: rotate(0deg); }
}

/* ============= PRÊMIOS (estrutura - com setas) ============= */
.hac-est-premios{
  background: var(--hac-bg-soft);
  padding: 80px 0 96px;
}
.hac-est-premios h2{
  text-align:center;
  color: var(--hac-green);
  font-weight:700;
  font-size: 22px;
  margin: 0 0 48px;
  letter-spacing: .01em;
}
.hac-est-premios .premios-wrap{
  max-width: 1648px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  /* minmax(0, 1fr) força o item a respeitar o espaço disponível em vez
     de crescer com o conteúdo intrínseco — sem isso, o swiper interno
     reportava 33554432px e sumia da view. */
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 16px;
}
.hac-est-premios .premios-arrow{
  background: transparent;
  border: 0;
  color: #9a9a9a;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: color .2s;
}
.hac-est-premios .premios-arrow:hover{ color: var(--hac-green); }
/* width:100% explícito + min-width:0 forçam o swiper a respeitar o
   espaço do grid (minmax(0,1fr)). Sem width:100% o .swiper ganha
   width:auto e cresce até o tamanho intrínseco do seu conteúdo (33M px). */
.hac-est-premios .hac-swiper-premios{
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.hac-est-premios .hac-premio-selo{
  display:flex; align-items:center; justify-content:center;
  height: 160px;
  padding: 0 16px;
}
.hac-est-premios .hac-premio-selo img{
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
@media (max-width: 700px){
  .hac-est-premios{ padding: 48px 0 64px; }
  .hac-est-premios .premios-wrap{ padding: 0 8px; grid-template-columns: 32px 1fr 32px; }
  .hac-est-premios .premios-arrow{ width:32px; height:32px; }
  .hac-est-premios .hac-premio-selo{ height: 120px; }
}

/* ============================================================
   NOTÍCIA (single post)
   Layout baseado no mock de referência:
   - Hero full-width (sem sobreposição do conteúdo)
   - Coluna de texto estreita (~820px) centralizada
   - Meta em faixa cinza sutil, H1 verde
   - Bloco verde + imagem duotone no meio do artigo
   ============================================================ */
.hac-noticia-hero{
  width:100%;
  height: clamp(280px, 36vw, 560px);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--hac-border);
}

.hac-noticia-hero h1 {
  font-size: clamp(25px, 5vw, 50px) !important;
}


.hac-noticia-article{
  padding: 0 24px;
}
.hac-noticia-wrap{
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 0 0;
}

/* Meta row */
.hac-noticia-meta{
  background: #F4F4F4;
  border-radius: 4px;
  padding: 18px 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hac-noticia-meta .kicker{
  font-weight: 700;
  font-size: 15px;
  color: var(--hac-green-deep);
  letter-spacing: .03em;
}
.hac-noticia-meta .divider{
  width: 1px;
  height: 22px;
  background: #C9C9C9;
}
.hac-noticia-meta .item{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  color: var(--hac-text);
}
.hac-noticia-meta .item svg{ width: 18px; height: 18px; color: var(--hac-text); }

/* Article body */
.hac-noticia-body h1{
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  color: var(--hac-green);
  margin: 0 0 24px;
}
.hac-noticia-body p strong{ color: var(--hac-text); font-weight: 700; }

/* Leia também inline bloc */
.hac-noticia-leia-tambem{
  margin: 24px 0 32px;
  font-size: 17px;
  line-height: 1.6;
}
.hac-noticia-leia-tambem strong{
  color: var(--hac-text);
  display: block;
  margin-bottom: 6px;
}
.hac-noticia-leia-tambem a{
  color: var(--hac-green);
  text-decoration: underline;
  font-weight: 600;
}
.hac-noticia-leia-tambem a:hover{ color: var(--hac-green-dark); }
.hac-noticia-leia-tambem .linha{ display: block; }
.hac-noticia-leia-tambem .linha::before{ content: "– "; }

/* Duotone break section */
.hac-noticia-duotone{
  position: relative;
  margin: 72px 0;
}
.hac-noticia-duotone::before{
  content:"";
  position: absolute;
  inset: 0 0 auto 0;
  height: 180px;
  background: var(--hac-green);
}
.hac-noticia-duotone-img{
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #0B4FA5;
  background-blend-mode: multiply;
  filter: none;
}

/* Tags */
.hac-noticia-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0 24px;
}
.hac-noticia-tags .tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--hac-green);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.hac-noticia-tags .tag:hover{ background: var(--hac-green-dark); }

@media (max-width:768px){
  .hac-noticia-wrap{ padding-top: 24px; }
  .hac-noticia-meta{ padding: 14px 18px; gap: 12px; }
  .hac-noticia-meta .divider{ display: none; }
  .hac-noticia-duotone{ margin: 48px 0; }
  .hac-noticia-duotone::before{ height: 80px; }
}

/* ============================================================
   CONTEÚDOS RELACIONADOS (carrossel reutilizável)
   ============================================================ */
.hac-related-content{
  background: #F4F4F4;
  padding: 96px 60px 120px;
  overflow: hidden;
}
.hac-related-content h2{
  color: var(--hac-green);
  font-size: clamp(28px, 2.6vw, 36px);
  margin: 0 0 40px;
}
.hac-related-swiper{ overflow: visible; }
.hac-rc-card{
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
  height: auto;
  min-height: 340px;
}
.hac-rc-thumb{
  display: block;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #E8E8E8;
  position: relative;
  overflow: hidden;
}
.hac-rc-thumb--report{
  background: linear-gradient(135deg, #97CB62 0%, #7EB848 60%, #2D8F44 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 20px 24px;
  color: #fff;
  text-align: right;
}
.hac-rc-thumb--report::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 55%, #fff 55%, #fff 57%, transparent 57%) no-repeat;
  opacity: .9;
  pointer-events: none;
}
.hac-rc-report-title{
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}
.hac-rc-report-sub{
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.hac-rc-body{
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.hac-rc-body h3{
  font-size: 17px;
  line-height: 1.3;
  margin: 0;
  color: var(--hac-green);
  font-weight: 700;
}
.hac-rc-body h3 a{ color: inherit; }
.hac-rc-body h3 a:hover{ color: var(--hac-green-dark); }
.hac-rc-body p{
  font-size: 15px;
  line-height: 1.45;
  color: #555;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hac-rc-tag{
  align-self: flex-start;
  background: var(--hac-green);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 999px;
}
.hac-related-footer{
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hac-related-nav{
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.hac-related-prev,
.hac-related-next{
  background: transparent;
  border: 0;
  padding: 6px;
  color: var(--hac-text);
  cursor: pointer;
  border-radius: 4px;
}
.hac-related-prev:hover,
.hac-related-next:hover{ color: var(--hac-green); }
.hac-related-pagination{
  position: static !important;
  width: auto !important;
  display: inline-flex;
  gap: 8px;
}
.hac-related-pagination .swiper-pagination-bullet{
  width: 8px; height: 8px;
  background: #C9C9C9;
  opacity: 1;
  border-radius: 999px;
  transition: background .2s;
}
.hac-related-pagination .swiper-pagination-bullet-active{ background: var(--hac-green); }

/* CTA pill base (caso não exista no projeto) */
.hac-cta-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--hac-green);
  color: var(--hac-green);
  background: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.hac-cta-pill:hover{ background: var(--hac-green); color: #fff; }
.hac-cta-pill.filled{ background: var(--hac-green); color: #fff; }
.hac-cta-pill.filled:hover{ background: var(--hac-green-dark); color: #fff; }

/* ============================================================
   CONTATO CTA (reutilizável)
   ============================================================ */
.hac-contact-cta{
  background: #fff;
  padding: 96px 0 80px;
}
.hac-contact-cta-inner{
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.hac-contact-cta-head h2{
  color: var(--hac-green);
  font-size: clamp(26px, 2.2vw, 32px);
  margin: 0 0 16px;
  line-height: 1.15;
}
.hac-contact-cta-head p{
  color: #555;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}
.hac-contact-cta-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}
.hac-contact-pill{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 26px;
  background: #fff;
  border: 1px solid #D0D0D0;
  border-radius: 999px;
  color: var(--hac-text);
  text-decoration: none;
  font-size: 17px;
  transition: border-color .2s, color .2s, background .2s;
}
.hac-contact-pill:hover{
  border-color: var(--hac-green);
  color: var(--hac-green);
  background: #FAFDFB;
}
.hac-contact-pill svg{ color: var(--hac-green); flex-shrink: 0; }
.hac-contact-fallback{
  margin-top: 8px;
  padding: 4px 26px;
  font-size: 14px;
  color: var(--hac-text);
  text-decoration: underline;
  align-self: flex-start;
}
.hac-contact-fallback:hover{ color: var(--hac-green); }

@media (max-width: 900px){
  .hac-contact-cta-inner{ grid-template-columns: 1fr; gap: 32px; }
  .hac-contact-cta{ padding: 20px 0; }
  .hac-contact-pill{ font-size: 16px; }
}

/* ============================================================
   HOME — VÍDEO INSTITUCIONAL (Vimeo)
   ============================================================ */
/* Full-bleed: ocupa 100% da largura da tela, recortando topo/baixo se preciso */
.hac-home-video{ background: #000; padding: 0; }
.hac-home-video .inner{ max-width: none; margin: 0; }
.hac-home-video .ratio{
  border-radius: 0; overflow: hidden;
  height: min(56.25vw, 100vh);   /* largura cheia, altura limitada */
}
.hac-home-video .ratio::before{ display: none; }   /* remove o aspect-hack do Bootstrap */
.hac-home-video .ratio iframe{
  /* Preenche a área (16:9 na largura cheia) SEM recorte — antes era "cover"
     (iframe maior que a caixa + overflow:hidden), o que cortava a barra de
     controles do player no rodapé. Agora o player cabe inteiro e os controles
     do Vimeo ficam visíveis. */
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}
@media (max-width: 992px){
  .hac-home-video .ratio{ height: min(56.25vw, 70vh); }
}

/* ============= HOME — INTRO DE VÍDEO FULLSCREEN ============= */
/* Camada de intro (vídeo fixo + marca/slogan) que o conteúdo do site cobre ao
   rolar. O JS injeta o player e controla o cookie hac_intro_seen; a classe
   html.hac-intro-off (setada antes do paint quando o cookie existe) esconde tudo. */
html.hac-intro-off .hac-intro-video,
html.hac-intro-off .hac-intro-spacer { display: none; }

.hac-intro-video{ position: fixed; inset: 0; z-index: 1; background: #000; overflow: hidden; }
/* iframe técnica "object-fit: cover" — cobre qualquer proporção de viewport
   (vídeo único 16:9 serve desktop e mobile) */
.hac-intro-video iframe{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.78vh;
  border: 0; pointer-events: none;
}
.hac-intro-spacer{ height: 100vh; }
.hac-site-wrap{ position: relative; z-index: 2; background: #fff; }

/* Marca + slogan sobre o vídeo — centralizado no desktop */
.hac-intro-brand{
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  z-index: 2; text-align: center; color: #fff; width: min(92vw, 900px);
  text-shadow: 0 2px 4px rgba(0,0,0,.45), 0 6px 24px rgba(0,0,0,.40);
}
.hac-intro-brand-title{ margin: 0; font-weight: 700; line-height: 1.05; font-size: clamp(34px, 5vw, 72px); }
.hac-intro-brand-title img{ width: 400px; max-width: 100%; height: auto; margin: 0 auto; }
.hac-intro-brand-slogan{ margin: 14px 0 0; font-weight: 400; opacity: .95; font-size: clamp(16px, 1.8vw, 26px); }

/* Mobile: marca + slogan no TOPO da página (desktop segue centralizado) */
@media (max-width: 768px){
  .hac-intro-brand{ top: 7%; transform: translate(-50%, 0); }
  .hac-intro-brand-title img{ width: 250px; }
}

.hac-intro-cta{
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 2; text-align: center; width: min(92vw, 820px);
}
.hac-intro-btn{
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 14px 28px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.75); border-radius: var(--hac-radius-pill, 60px);
  color: #fff; font-family: inherit; font-size: clamp(15px, 1.4vw, 22px); font-weight: 500;
  cursor: pointer; text-shadow: 0 1px 6px rgba(0,0,0,.35); transition: background .2s ease;
}
.hac-intro-btn:hover{ background: rgba(255,255,255,.22); }
.hac-intro-btn:focus-visible{ outline: 3px solid #fff; outline-offset: 3px; }
.hac-intro-btn .arr{ font-size: 1.1em; }
.hac-intro-btn-text{ display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hac-intro-btn-label{ line-height: 1.2; }
.hac-intro-hint{ color: rgba(255,255,255,.85); font-size: 13px; font-weight: 400; }

/* ============================================================
   PÁGINAS DE ESPECIALIDADE / SERVIÇO
   (Ambulatório, Cardiologia, Cirurgia Bariátrica, Cirurgia Robótica,
    Complexo Cirúrgico, Corpo Clínico)
   ============================================================ */

/* ---- Faixa verde com 2 colunas (título + texto) ---- */
.hac-esp-band{
  background: var(--hac-green);
  color: #fff;
  padding: 100px 136px;
}
.hac-esp-band .row{
  max-width: 1648px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start;
}
.hac-esp-band h2{
  font-weight: 700; font-size: 30px; line-height: 1.1;
  color: #fff; margin: 0;
}
.hac-esp-band.lg h2{ font-size: 40px; line-height: 1.1; }
.hac-esp-band p{
  font-size: 20px; line-height: 1.45; color: #fff;
  margin: 0 0 22px;
}
.hac-esp-band p:last-child{ margin-bottom: 0; }
.hac-esp-band strong{ font-weight: 700; }
.hac-esp-band .hac-cta-pills{ margin-top: 32px; }
.hac-esp-band .hac-cta-pill{
  color: #fff;
  border: 1.5px solid #fff;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 32px;
  letter-spacing: .01em;
}
.hac-esp-band .hac-cta-pill:hover{
  background: #fff; color: var(--hac-green);
}


.hac-general-photo {
  position: relative;
}

/* Faixa verde curta (topo) que serve de fundo para foto sobreposta */
.hac-esp-band.with-photo{ padding-bottom: 180px; }
.hac-esp-overlap-photo{
  position: relative;
  margin-top: -100px;
}
.hac-esp-overlap-photo .inner{
  max-width: 1376px; margin: 0 auto; padding: 0 136px;
}
.hac-esp-overlap-photo .photo{
  width: 100%; aspect-ratio: 1400/1000;
  background-size: cover; background-position: center;
  border-radius: 6px;
  position: relative;
}
.hac-esp-overlap-photo .seal{
  position: absolute; top: 20px; left: 20px; width: 160px; height: 160px;
  background-size: contain; background-repeat: no-repeat; background-position: center;
}
.hac-esp-overlap-photo .afterspace{ height: 80px; }

/* Banner card centralizado — usado para banners promocionais entre seções 2-col
   (ex.: "90% de chances de cura" no Complexo Cirúrgico). Imagem boxed em max-width
   ~1100px, com rounded corners e shadow leve. */
.hac-esp-banner-card{
  background: #fff;
  padding: 40px 24px;
}
.hac-esp-banner-card .inner{
  max-width: 1100px;
  margin: 0 auto;
}
.hac-esp-banner-card .card{
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  transition: transform .2s, box-shadow .2s;
}
.hac-esp-banner-card .card:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
}
.hac-esp-banner-card .card img{
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px){
  .hac-esp-banner-card{ padding: 24px 16px; }
  .hac-esp-banner-card .card{ border-radius: 12px; }
}

/* Foto em bloco normal (sem overlap) — usado quando a faixa verde acima
   tem texto longo e o overlap cortaria o texto (ex: saude-circular). */
.hac-esp-photo-block{
  background: #fff;
  padding: 60px 0;
}
.hac-esp-photo-block .inner{
  max-width: 1376px; margin: 0 auto; padding: 0 136px;
}
.hac-esp-photo-block .photo{
  width: 100%; aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  border-radius: 6px;
}
@media (max-width: 992px){
  .hac-esp-photo-block{ padding: 40px 0; }
  .hac-esp-photo-block .inner{ padding: 0 24px; }
}
@media (max-width: 992px){
  .hac-esp-band{ padding: 48px 24px; }
  .hac-esp-band .row{ grid-template-columns: 1fr; gap: 24px; }
  .hac-esp-band.with-photo{ padding: 40px 24px 120px 24px; }
  .hac-esp-overlap-photo{ margin-top: -100px; }
  .hac-esp-overlap-photo .inner{ padding: 0 24px; }
  .hac-esp-overlap-photo .seal{ width: 96px; height: 96px; }
}

/* ---- Bloco 2 colunas para seções de conteúdo com listas ---- */
.hac-esp-2col{
  padding: 80px 136px;
  background: #fff;
}
.hac-esp-2col + .hac-esp-2col{ padding-top: 0; }
.hac-esp-2col .row{
  max-width: 1648px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start;
}
.hac-esp-2col h2, .hac-esp-2col h3.col-title{
  font-weight: 700; font-size: 30px; line-height: 1.1;
  color: var(--hac-text); margin: 0;
}
.hac-esp-2col .content > p{
  font-size: 20px; line-height: 1.45; color: var(--hac-text);
  margin: 0 0 22px;
}
.hac-esp-2col .content strong{ font-weight: 700; }
.hac-esp-2col .content ul{
  margin: 0 0 18px; padding-left: 22px;
}
.hac-esp-2col .content ul li{
  font-size: 17px; line-height: 1.55; color: var(--hac-text); margin-bottom: 4px;
}
.hac-esp-2col.bold-list .content ul li{ font-weight: 700; }
.hac-esp-2col .content .sub-label{
  font-weight: 700; margin: 18px 0 6px; font-size: 17px;
}
.hac-esp-2col .content .hac-cta-pills{ margin-top: 24px; gap: 24px; }
.hac-esp-2col .content .hac-cta-pill{
  flex: 0 0 auto; padding: 20px 32px; font-size: 16px;
  border-radius: 60px; color: var(--hac-green); border-color: var(--hac-green);
  background: #fff; font-weight: 600;
}
.hac-esp-2col .content .hac-cta-pill.filled{ background: var(--hac-green); color: #fff; }
@media (max-width: 992px){
  .hac-esp-2col{ padding: 40px 24px; }
  .hac-esp-2col .row{ grid-template-columns: 1fr; gap: 16px; }
  /* Evita rolagem horizontal: e-mails longos quebram linha no mobile */
  .hac-esp-2col .content p, .hac-esp-2col .content strong{ overflow-wrap: break-word; word-break: break-word; }
}

/* ---- Agenda inline (telefone + email) ---- */
.hac-esp-agenda{
  padding: 40px 136px 80px; background: #fff;
}
.hac-esp-agenda .row{
  max-width: 1648px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start;
}
.hac-esp-agenda h2{
  font-weight: 700; font-size: 22px; color: var(--hac-text); margin: 0; line-height: 1.2;
}
.hac-esp-agenda .contact-list{ display: flex; flex-direction: column; gap: 14px; }
.hac-esp-agenda .contact-item{
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 17px; color: var(--hac-text); font-weight: 600;
}
.hac-esp-agenda .contact-item svg{ color: var(--hac-green); flex-shrink: 0; }
@media (max-width: 992px){
  .hac-esp-agenda{ padding: 24px 24px 40px; }
  .hac-esp-agenda .row{ grid-template-columns: 1fr; gap: 16px; }
}

/* ---- Seção "Saiba mais" com título + vídeo sobreposto ---- */
.hac-esp-video{
  position: relative; background: #fff;
}
.hac-esp-video .band{
  background: var(--hac-green); padding: 60px 24px 160px;
  text-align: center; color: #fff;
}
.hac-esp-video .band h2{
  color: #fff; font-size: 32px; font-weight: 700; line-height: 1.2; margin: 0 0 12px;
}
.hac-esp-video .band p{
  color: #fff; font-size: 16px; line-height: 1.4; margin: 0 auto; max-width: 620px;
}
.hac-esp-video .media{
  max-width: 900px; margin: -140px auto 0;
  aspect-ratio: 1400/1000;
  background: repeating-conic-gradient(#f0f0f0 0 25%, #e0e0e0 0 50%) 0 / 40px 40px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
}
.hac-esp-video .after{ height: 80px; }
@media (max-width: 992px){
  .hac-esp-video .band{ padding: 40px 24px 120px; }
  .hac-esp-video .media{ margin-top: -100px; max-width: calc(100% - 48px); }
}

/* ---- Card CTA whatsapp (Cardiologia) ---- */
.hac-esp-whats{
  padding: 40px 136px 80px; background: #fff;
}
.hac-esp-whats .row{
  max-width: 1648px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start;
}
.hac-esp-whats h2{
  font-weight: 700; font-size: 22px; color: var(--hac-text); margin: 0; line-height: 1.2;
}
.hac-esp-whats .contact-item{
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 17px; color: var(--hac-text);
  margin-bottom: 10px;
}
.hac-esp-whats .contact-item svg{ color: var(--hac-green); flex-shrink: 0; }
@media (max-width: 992px){
  .hac-esp-whats{ padding: 24px 24px 40px; }
  .hac-esp-whats .row{ grid-template-columns: 1fr; gap: 16px; }
}

/* ---- Banda 6 fotos equipe (full-bleed) ---- */
.hac-esp-equipe-band{
  display: flex;
  gap: 0;
  overflow: hidden;
  justify-content: center; /* poucos médicos → cards centralizados, não esticados */
}
.hac-esp-equipe-band .medico{
  flex: 1 1 0;
  min-width: 60px;
  max-width: 360px; /* impede 1-2 médicos de ocuparem toda a largura */
  height: 500px;
  background-size: cover; background-position: center top;
  position: relative;
  display: block;
  overflow: hidden;
  transition: flex-grow .5s ease;
}
.hac-esp-equipe-band .medico:hover{ flex-grow: 2.4; }
.hac-esp-equipe-band .medico--inert{ cursor: default; }
.hac-esp-equipe-band .medico::after{
  content:"";
  position:absolute; inset:auto 0 0 0; height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  pointer-events:none;
}
.hac-esp-equipe-band .medico .nome{
  position: absolute; left: 20px; bottom: 24px;
  color: #fff; font-weight: 700; font-size: 15px;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
  line-height: 1.1;
  white-space: nowrap;
  z-index: 1;
  transform-origin: left bottom;
  transform: rotate(-90deg);
  transition: transform .35s ease;
}
.hac-esp-equipe-band .medico:hover .nome{ transform: rotate(0deg); }
@media (max-width: 992px){
  .hac-esp-equipe-band{ overflow-x: auto; scroll-snap-type: x mandatory; justify-content: flex-start; }
  .hac-esp-equipe-band .medico{ flex: 0 0 33.333%; max-width: none; height: 320px; scroll-snap-align: start; }
  .hac-esp-equipe-band .medico:hover{ flex-grow: 0; }
  .hac-esp-equipe-band .medico .nome{ transform: rotate(0deg); }
}
/* Setas de arrasto da banda de médicos — só no mobile, e somem quando não há
   overflow (botões ficam disabled via JS). */
.hac-esp-equipe-bandwrap{ position: relative; }
.hac-esp-equipe-bandwrap .band-arrow{ display: none; }
@media (max-width: 992px){
  .hac-esp-equipe-bandwrap .band-arrow{
    display: inline-flex; align-items: center; justify-content: center;
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
    width: 44px; height: 44px; border-radius: 50%; border: 0;
    background: rgba(255,255,255,.92); color: var(--hac-green);
    box-shadow: 0 2px 10px rgba(0,0,0,.25); cursor: pointer;
    transition: opacity .2s ease;
  }
  .hac-esp-equipe-bandwrap .band-arrow--prev{ left: 12px; }
  .hac-esp-equipe-bandwrap .band-arrow--next{ right: 12px; }
  .hac-esp-equipe-bandwrap .band-arrow[disabled]{ opacity: 0; pointer-events: none; }
}

/* ---- Seção centralizada "Nossa equipe" ---- */
.hac-esp-equipe-head{
  text-align: center;
  padding: 60px 24px 32px;
  background: #fff;
}
.hac-esp-equipe-head h2{
  color: var(--hac-green); font-weight: 700; font-size: 28px;
  margin: 0 0 10px; line-height: 1.1;
}
.hac-esp-equipe-head p{
  color: var(--hac-text); font-size: 16px; margin: 0 0 24px;
}
.hac-esp-equipe-head .btn-verdes{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 60px;
  background: var(--hac-green); color: #fff; font-weight: 600; font-size: 15px;
}
.hac-esp-equipe-head .btn-verdes:hover{ background: var(--hac-green-dark); color:#fff; }

/* ---- Ambulatório: foto full-width sobre faixa verde ---- */
.hac-esp-photoband{
  position: relative; background: #fff; padding: 0;
}
.green-band{
  height: 160px; background: var(--hac-green);
}
.hac-esp-photoband .photo{
  width: 100%; max-width: 1100px;
  margin: -120px auto 0;
  aspect-ratio: 1400/1000;
  background-size: cover; background-position: center;
  border-radius: 0;
}
.hac-esp-photoband .after{ height: 80px; }
@media (max-width: 992px){
  .hac-esp-photoband .photo{ max-width: calc(100% - 48px); margin-top: -60px; }
  .hac-esp-photoband .green-band{ height: 100px; }
}

/* ---- Cirurgia Bariátrica: Antes/Depois — slide Swiper DB-driven ---- */
.hac-esp-antes-depois{
  padding: 60px 136px; background: #fff;
}
.hac-esp-antes-depois .hac-bar-ad-swiper{
  max-width: 1200px; margin: 0 auto; overflow: hidden;
}
.hac-esp-antes-depois .swiper-slide{ height: auto; }
.hac-esp-antes-depois .wrap{
  display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 40px;
  align-items: start;
}
.hac-esp-antes-depois .col h3{
  font-size: 22px; color: var(--hac-green); font-weight: 700; margin: 0 0 16px; text-align: center;
}
.hac-esp-antes-depois .col.testi{ display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.hac-esp-antes-depois .col.testi h3{
  text-align: left; color: var(--hac-text); font-size: 14px; font-weight: 500; margin: 0;
  order: 2;
}
.hac-esp-antes-depois .col.testi h3 small{ font-weight: 400; }
.hac-esp-antes-depois .col .foto{
  aspect-ratio: 1/1;
  background-size: cover; background-position: center;
  border-radius: 6px;
}
.hac-esp-antes-depois .testi p{
  font-size: 16px; line-height: 1.55; color: var(--hac-text); margin: 0;
  order: 1;
}
.hac-esp-antes-depois .testi p strong{ font-weight: 700; }
/* Navegação reusa .hac-depo-nav + .hac-depo-arrow (mesmo padrão do navigator
   de depoimentos da home). Só ajusta o container max-width e os bullets do
   Swiper-pagination. */
.hac-esp-antes-depois .hac-depo-nav{
  max-width: 1200px; margin-left: auto; margin-right: auto;
  gap: 16px;
}
.hac-esp-antes-depois .hac-bar-ad-pagination.swiper-pagination{
  display: inline-flex; gap: 10px; align-items: center;
}
.hac-esp-antes-depois .hac-bar-ad-pagination .swiper-pagination-bullet{
  width: 10px; height: 10px; border-radius: 50%; background: #CCC; opacity: 1;
  display: inline-block; cursor: pointer; transition: background .15s;
  margin: 0;
}
.hac-esp-antes-depois .hac-bar-ad-pagination .swiper-pagination-bullet-active{
  background: var(--hac-green);
}
@media (max-width: 992px){
  .hac-esp-antes-depois{ padding: 40px 24px; }
  .hac-esp-antes-depois .wrap{ grid-template-columns: 1fr; gap: 24px; }
}

/* ---- Suites slide interativo (Bariátrica) — mesmo padrão da equipe-band:
   flex com cada suite expandindo no hover. Label vertical, gira em 0deg ao hover. ---- */
.hac-esp-suites{
  display: flex;
  gap: 0;
  overflow: hidden;
}
.hac-esp-suites .suite{
  flex: 1 1 0;
  min-width: 60px;
  height: 500px;
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
  transition: flex-grow .5s ease;
  cursor: pointer;
}
.hac-esp-suites .suite:hover{ flex-grow: 2.4; }
.hac-esp-suites .suite::after{
  content: "";
  position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  pointer-events: none;
}
.hac-esp-suites .suite .lbl{
  position: absolute; left: 20px; bottom: 24px;
  color: #fff; font-weight: 700; font-size: 15px;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
  line-height: 1.1;
  white-space: nowrap;
  z-index: 1;
  transform-origin: left bottom;
  transform: rotate(-90deg);
  transition: transform .35s ease;
}
.hac-esp-suites .suite:hover .lbl{ transform: rotate(0deg); }
@media (max-width: 992px){
  .hac-esp-suites{ overflow-x: auto; scroll-snap-type: x mandatory; }
  .hac-esp-suites .suite{ flex: 0 0 60%; height: 360px; scroll-snap-align: start; }
  .hac-esp-suites .suite:hover{ flex-grow: 0; }
  .hac-esp-suites .suite .lbl{ transform: rotate(0deg); }
}

/* ---- Banner de destaque (ex: "90% de chances de cura") ---- */
.hac-esp-stat-banner{
  margin: 40px 136px; max-width: 1376px;
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.hac-esp-stat-banner .text{
  background: var(--hac-green); color: #fff; padding: 60px 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.hac-esp-stat-banner .text .sub{ font-size: 18px; line-height: 1.2; font-weight: 500; max-width: 260px; }
.hac-esp-stat-banner .text .big{
  font-size: clamp(72px, 8vw, 120px); font-weight: 800; line-height: .9;
}
.hac-esp-stat-banner .text .mid{ font-size: 32px; font-weight: 700; line-height: 1.1; }
.hac-esp-stat-banner .text .foot{ font-size: 14px; opacity: .9; margin-top: auto; }
.hac-esp-stat-banner .photo{
  background-size: cover; background-position: center;
  min-height: 320px;
}
@media (max-width: 992px){
  .hac-esp-stat-banner{ margin: 24px; grid-template-columns: 1fr; }
  .hac-esp-stat-banner .text{ padding: 40px 24px; }
}

/* ---- Corpo Clínico — grid de médicos ---- */
.hac-cc-head{
  padding: 60px 136px 24px; background: #fff;
}
.hac-cc-head h1{
  color: var(--hac-green); font-size: clamp(40px, 5vw, 64px); font-weight: 700;
  margin: 0 0 32px; line-height: 1;
}
/* Busca por texto — filtra a lista em tempo real (on keyup). Sempre visível. */
.hac-cc-search{
  position: relative;
  max-width: 560px;
  margin: 0 0 28px;
}
.hac-cc-search input{
  width: 100%; height: 50px;
  border: 1px solid var(--hac-border); border-radius: 80px;
  padding: 12px 52px 12px 22px;
  font: 16px/1.2 'Montserrat', sans-serif; color: var(--hac-text);
  background: #fff;
  -webkit-appearance: none; appearance: none;
}
.hac-cc-search input:focus{
  outline: none; border-color: var(--hac-green);
  box-shadow: 0 0 0 3px rgba(45,143,68,.12);
}
.hac-cc-search input::placeholder{ color: var(--hac-text-muted); }
.hac-cc-search input::-webkit-search-cancel-button{ -webkit-appearance: none; }
.hac-cc-search .ico{
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; color: var(--hac-text-muted); pointer-events: none;
}
@media (max-width: 992px){
  /* Mobile: busca ocupa toda a largura útil, fonte 16px evita zoom no iOS. */
  .hac-cc-search{ max-width: none; margin-bottom: 20px; }
  .hac-cc-search input{ height: 46px; font-size: 16px; }
}
.hac-cc-filters{
  max-width: 1648px; margin: 0 auto;
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
}
.hac-cc-filters .label{ font-size: 14px; color: var(--hac-text); margin-right: 8px; }
.hac-cc-filters .filter-pill{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 60px;
  border: 1px solid var(--hac-green);
  background: #fff; color: var(--hac-green);
  font-weight: 600; font-size: 14px;
  cursor: pointer;
  position: relative;
}
.hac-cc-filters .filter-pill.active{ background: var(--hac-green); color: #fff; }
.hac-cc-filters .spacer{ flex: 1; }
.hac-cc-filters .view-toggle{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--hac-text);
}
.hac-cc-filters .view-toggle .view-btn{
  width: 32px; height: 32px; border-radius: 6px;
  border: 1px solid var(--hac-border); background: #fff;
  color: var(--hac-text);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.hac-cc-filters .view-toggle .view-btn.active{ background: var(--hac-green); color: #fff; border-color: var(--hac-green); }
@media (max-width: 992px){
  /* Mobile: filtros (Especialidades / Ordem Alfabética) alinhados à esquerda —
     remove o "spacer" flex:1 que empurrava o toggle de visualização para a direita. */
  .hac-cc-filters{ justify-content: flex-start; }
  .hac-cc-filters .spacer{ display: none; }
  /* Remove a palavra "Filtros" — só as pílulas de especialidades/ordem lado a lado. */
  .hac-cc-filters .label{ display: none; }
  /* Largura padronizada: as 2 pílulas dividem a linha em 50/50 (independente do
     texto "Especialidades" vs "Ordem Alfabética"); o toggle de visualização desce. */
  .hac-cc-filters .filter-pill{
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
    padding-left: 12px; padding-right: 12px;
  }
  /* No mobile o menu flutuante ocupa a largura útil (left:24px do base + right:24px). */
  .hac-cc-dropdowns{ right: 24px; }
  .hac-cc-dropdowns .hac-cc-dropdown{ width: 100%; max-width: 360px; }
}

.hac-cc-dropdowns{
  /* Menu flutuante: fica SOBRE o conteúdo (não empurra a grade para baixo),
     ancorado logo abaixo dos filtros. Vale em qualquer largura. */
  position: absolute; top: 100%; left: 24px; z-index: 50;
  margin: 8px 0 0;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hac-cc-dropdown{
  background: #fff; border-radius: 8px; box-shadow: var(--hac-shadow);
  padding: 20px; min-width: 200px;
}
.hac-cc-dropdown label{
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; padding: 4px 0; color: var(--hac-text);
}
.hac-cc-dropdown label input{ accent-color: var(--hac-green); }
.hac-cc-dropdown .more{
  font-size: 13px; color: var(--hac-text); margin: 4px 0; display: inline-block;
}
.hac-cc-dropdown .apply{
  margin-top: 8px; display: inline-block;
  padding: 6px 16px; background: var(--hac-green); color: #fff;
  border-radius: 60px; font-size: 13px; font-weight: 600;
  border: 0; cursor: pointer;
}
.hac-cc-alfabeto{
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  font-size: 12px; font-weight: 600; text-align: center;
}
.hac-cc-alfabeto span{
  padding: 4px 0; color: var(--hac-text); cursor: pointer;
}
.hac-cc-alfabeto span.active{
  background: var(--hac-green); color: #fff; border-radius: 50%;
  line-height: 20px; margin: 0 auto; margin: 0px auto 0; padding: 3px 10px;
}

.hac-cc-grid{
  padding: 40px 136px 60px; background: #fff;
  max-width: 1920px; margin: 0 auto;
}
.hac-cc-grid .inner{
  max-width: 1648px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
/* Separador por categoria na listagem de especialidades (ocupa a linha toda do grid) */
.hac-esp-sep{
  grid-column: 1 / -1;
  margin: 16px 0 4px;
  font-size: 22px; font-weight: 700;
  color: var(--hac-green);
  border-bottom: 2px solid var(--hac-green);
  padding-bottom: 8px;
}
.hac-esp-sep:first-child{ margin-top: 0; }
.hac-cc-card{
  position: relative; aspect-ratio: 1/1;
  background-size: cover; background-position: center top;
  border-radius: 4px; overflow: hidden;
  display: block;
  box-shadow: var(--hac-shadow);
}
.hac-cc-card::after{
  content:""; position: absolute; inset: 60% 0 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.7));
}
.hac-cc-card .nome{
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  color: #fff; font-weight: 600; font-size: 18px;
  line-height: 1.2;
  max-width: 75%;
}
@media (max-width: 992px){
  .hac-cc-head, .hac-cc-grid{ padding-left: 24px; padding-right: 24px; }
  .hac-cc-grid .inner{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .hac-cc-grid .inner{ grid-template-columns: repeat(2, 1fr); }
  .hac-cc-card .nome {
    font-size: 14px;
  }
}

.hac-cc-pagination{
  display: flex; justify-content: center; align-items: center; gap: 8px;
  padding: 24px 0 48px;
}
.hac-cc-pagination a, .hac-cc-pagination span{
  min-width: 40px; height: 40px; display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 8px; border: 1px solid var(--hac-border);
  color: var(--hac-text); font-weight: 600; text-decoration: none;
}
.hac-cc-pagination a.active, .hac-cc-pagination a:hover{
  background: var(--hac-green); color: #fff; border-color: var(--hac-green);
}

.hac-cc-bottom{
  max-width: 1648px; margin: 0 auto 80px;
  padding: 0 136px;
  display: grid; grid-template-columns: 1fr 580px; gap: 40px;
  align-items: start;
}

.hac-cc-bottom .left{ display: flex; flex-direction: column; gap: 12px; }
.hac-cc-bottom .left .hac-cta-pill{
  flex: 0; padding: 18px 28px; font-size: 15px; color: var(--hac-text); border-color: var(--hac-border);
  justify-content: space-between; gap: 16px; font-weight: 500;
}
.hac-cc-bottom .left .hac-cta-pill:hover{ color: var(--hac-green); border-color: var(--hac-green); background: #fff; }
.hac-cc-whats{
  background: var(--hac-green); color: #fff;
  padding: 28px 36px; border-radius: 20px;
  display: flex; align-items: center; gap: 20px;
}
.hac-cc-whats .ico{
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hac-cc-whats .t{ font-size: 16px; font-weight: 500; line-height: 1.3; }
.hac-cc-whats .phone{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 24px; font-weight: 700; color: #fff; text-decoration: none;
  margin-top: 4px;
}

/* Card de contato com DUAS opções no mesmo número: Ligar OU WhatsApp.
   Deixa explícito que há dois canais — dois botões rotulados, ícones e
   cores distintas (WhatsApp em verde da marca). */
.hac-cc-whats--dual{
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.hac-cc-whats--dual .num{
  font-size: 26px; font-weight: 700; line-height: 1.1; margin-top: 2px;
}
.hac-cc-whats--dual .opts{
  font-size: 13px; opacity: .9; margin-top: 6px; line-height: 1.35;
}
.hac-cc-whats--dual .actions{
  display: flex; gap: 12px;
}
.hac-cc-whats--dual .act{
  flex: 1 1 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 16px; border-radius: 60px;
  font: 700 15px/1 'Montserrat', sans-serif; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.hac-cc-whats--dual .act i{ font-size: 20px; }
.hac-cc-whats--dual .act--call{ background: #fff; color: var(--hac-green); }
.hac-cc-whats--dual .act--wa{ background: #25D366; color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.18); }
.hac-cc-whats--dual .act:hover{ transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.2); }

@media (max-width: 992px){
  .hac-cc-bottom{ padding: 0 24px; grid-template-columns: 1fr; margin-bottom: 48px; }
}
@media (max-width: 380px){
  .hac-cc-whats--dual .actions{ flex-direction: column; }
}

.hac-cc-contato{
  max-width: 1648px; margin: 0 auto 60px;
  padding: 0 136px;
}
.hac-cc-contato .row{
  display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start;
}
.hac-cc-contato h2{ color: var(--hac-green); font-size: 22px; font-weight: 700; margin: 0 0 12px; line-height: 1.15; }
.hac-cc-contato p{ font-size: 13px; color: var(--hac-text); margin: 0; }
.hac-cc-contato .opts{ display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.hac-cc-contato .opts .hac-cta-pill{
  padding: 14px 24px; font-size: 14px; font-weight: 500;
  color: var(--hac-text); border-color: var(--hac-border); background: #fff;
  justify-content: space-between; gap: 16px;
}
.hac-cc-contato .opts .hac-cta-pill:hover{ color: var(--hac-green); border-color: var(--hac-green); }
.hac-cc-contato .opts .link-all{
  font-size: 13px; color: var(--hac-green); font-weight: 500;
  text-decoration: underline; align-self: center; margin-top: 4px;
}
@media (max-width: 992px){
  .hac-cc-contato{ padding: 0 24px; }
  .hac-cc-contato .row{ grid-template-columns: 1fr; gap: 20px; }
}


/* ============= HERO PROJETOS (com anel colorido) ============= */
.hac-proj-hero{
  position: relative;
  width: 100%;
  min-height: 720px;          /* Figma: hero amplo (~1080) — 720 fica próximo respeitando 16:9-ish */
  padding: 80px 136px 60px;
  background: #0a0a0a;
  display: flex; align-items: flex-end;
  overflow: hidden;
  max-width: 1920px; margin: 0 auto;
}
.hac-proj-hero.hac-proj-hero--600{ min-height: 600px; }
.hac-proj-hero .photo{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.hac-proj-hero .photo::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.5));
}
.hac-proj-hero .ring{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, 60vw);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 18px solid transparent;
  z-index: 1;
  pointer-events: none;
}
.hac-proj-hero .ring::after{
  /* endpoint dot */
  content:""; position: absolute;
  width: 40px; height: 40px; border-radius: 50%;
  background: currentColor;
  right: -10px; bottom: 22%;
}
.hac-proj-hero .ring.purple{ color: #8A4FFF; border-color: currentColor; }
.hac-proj-hero .ring.blue{   color: #2BB3FF; border-color: currentColor; }
.hac-proj-hero .ring.green{  color: #2D8F44; border-color: currentColor; }
.hac-proj-hero .hac-container{ position: relative; z-index: 2; max-width: var(--hac-container); }
.hac-proj-hero h1{
  color: #fff; font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700; line-height: 1; margin: 0;
}
@media (max-width: 992px){
  .hac-proj-hero{ padding: 40px 24px 32px; min-height: 360px; }
  .hac-proj-hero .ring{ width: 70vw; }
}

/* ============= FAIXA VERDE "Doe" com 2 pills ============= */
.hac-doe-band{
  background: var(--hac-green);
  padding: 56px 136px;
}
.hac-doe-band .row{
  max-width: 1648px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: center;
}
.hac-doe-band h2{
  color: #fff; font-size: 28px; font-weight: 700;
  text-align: center; margin: 0;
}
.hac-doe-band .pills{
  display: flex; flex-direction: column; gap: 14px;
  max-width: 420px;
}
.hac-doe-band .pills .hac-cta-pill{
  flex: 0 0 auto;
  color: #fff; border-color: #fff;
  justify-content: space-between; gap: 16px;
  padding: 14px 24px; font-size: 15px; line-height: 1.2;
  font-weight: 500;
  background: transparent;
  border-radius: 999px;
}
.hac-doe-band .pills .hac-cta-pill:hover{
  background: #fff; color: var(--hac-green); border-color: #fff;
}
@media (max-width: 992px){
  .hac-doe-band{ padding: 40px 24px; }
  .hac-doe-band .row{ grid-template-columns: 1fr; gap: 20px; }
  .hac-doe-band h2{ text-align: left; }
}

/* ============= TRANSPARÊNCIA E GOVERNANÇA (pills grid) ============= */
.hac-transp-gov{
  background: #fff; padding: 64px 136px;
}
.hac-transp-gov .row{
  max-width: 1648px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start;
}
.hac-transp-gov h2{
  color: var(--hac-green); font-size: 28px; font-weight: 700;
  line-height: 1.15; margin: 0;
}
.hac-transp-gov .pills-grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
}
.hac-transp-gov .pills-grid .hac-cta-pill{
  color: var(--hac-text); border-color: var(--hac-border);
  padding: 12px 22px; font-size: 14px; font-weight: 500;
  justify-content: space-between; gap: 12px; background: #fff;
}
.hac-transp-gov .pills-grid .hac-cta-pill:hover{
  color: var(--hac-green); border-color: var(--hac-green);
}
@media (max-width: 992px){
  .hac-transp-gov{ padding: 40px 24px; }
  .hac-transp-gov .row{ grid-template-columns: 1fr; gap: 20px; }
  .hac-transp-gov .pills-grid{ grid-template-columns: 1fr; }
}

/* ============= GRANDES PLAYERS (logos) ============= */
.hac-players{
  background: #fff; padding: 40px 136px 80px;
  text-align: center;
}
.hac-players h2{
  color: var(--hac-green); font-size: 28px; font-weight: 700;
  margin: 0 0 6px; line-height: 1.1;
}
.hac-players .subtitle{
  color: var(--hac-text); font-size: 16px; margin: 0 0 40px;
}
.hac-players .logos{
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 32px 24px;
  align-items: center; justify-items: center;
}
.hac-players .logos .logo{
  height: 100px; width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #999;
  font-weight: 600;
}
.hac-players .logos .logo img{
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
@media (max-width: 992px){
  .hac-players{ padding: 24px 24px 56px; }
  .hac-players .logos{ grid-template-columns: repeat(3, 1fr); }
}

/* ============= PÁGINA DO MÉDICO ============= */
.hac-pd-head{
  padding: 40px 136px 0; background: #fff;
  max-width: 1920px; margin: 0 auto;
}
.hac-pd-head h1{
  max-width: 1648px; margin: 0 auto 24px;
  color: var(--hac-green); font-size: clamp(36px, 4vw, 52px);
  font-weight: 700; line-height: 1;
}
.hac-pd-main{
  padding: 0 136px 40px; background: #fff;
  max-width: 1920px; margin: 0 auto;
}
.hac-pd-main .inner{
  max-width: 1648px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
.hac-pd-photo{
  position: relative; width: 100%; aspect-ratio: 1/1;
  background-size: cover; background-position: center top;
  border-radius: 4px; overflow: hidden;
}
.hac-pd-photo::after{
  content: ""; position: absolute; inset: 50% 0 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.75));
}
.hac-pd-photo .nome{
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  color: #fff; font-size: 26px; font-weight: 700;
}
.hac-pd-info h2{
  color: var(--hac-green); font-size: 22px; font-weight: 700;
  margin: 0 0 14px; line-height: 1.2;
}
.hac-pd-info ul.tags{
  list-style: none; padding: 0; margin: 0 0 28px;
}
.hac-pd-info ul.tags li{
  position: relative; padding-left: 18px; margin-bottom: 4px;
  font-size: 16px; color: var(--hac-text);
}
.hac-pd-info ul.tags li::before{
  content:""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--hac-green);
}
.hac-pd-info p.bio,
.hac-pd-info .bio{
  font-size: 15px; line-height: 1.55; color: var(--hac-text);
  margin: 0 0 22px;
}
.hac-pd-info .bio p{ margin: 0 0 .8em; }
.hac-pd-info .bio p:last-child{ margin-bottom: 0; }
.hac-pd-info .bio h3,
.hac-pd-info .bio h4{ color: var(--hac-green-title, #345D32); font-weight: 700; margin: 1em 0 .3em; line-height: 1.3; }
.hac-pd-info .bio ul,
.hac-pd-info .bio ol{ padding-left: 1.2em; margin: .4em 0 .8em; }
.hac-pd-info .bio li{ margin: .15em 0; }
.hac-pd-info .bio strong{ font-weight: 700; }
.hac-pd-info .bio a{ color: var(--hac-green); text-decoration: underline; }
.hac-pd-info ul.crms{
  list-style: none; padding: 0; margin: 0;
}
.hac-pd-info ul.crms li{
  position: relative; padding-left: 18px; margin-bottom: 4px;
  font-size: 15px; color: var(--hac-text); font-weight: 500;
}
.hac-pd-info ul.crms li::before{
  content:""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--hac-green);
}
.hac-pd-ctas{
  max-width: 1648px; margin: 0 auto; padding: 0 136px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.hac-pd-ctas .left{ display: flex; flex-direction: column; gap: 12px; }
.hac-pd-ctas .left .hac-cta-pill{
  padding: 18px 28px; font-size: 15px; color: var(--hac-text);
  border-color: var(--hac-border); justify-content: space-between;
  gap: 16px; font-weight: 500;
}
.hac-pd-ctas .left .hac-cta-pill:hover{
  color: var(--hac-green); border-color: var(--hac-green); background: #fff;
}
@media (max-width: 992px){
  .hac-pd-head, .hac-pd-main, .hac-pd-ctas{ padding-left: 24px; padding-right: 24px; }
  .hac-pd-main .inner{ grid-template-columns: 1fr; gap: 32px; }
  .hac-pd-ctas{ grid-template-columns: 1fr; }
}

/* Variante "mais notícias que possam interessar" — fundo cinza, título verde */
.hac-related-content.hac-related-grey{
  background: var(--hac-bg-light, #F2F2F2);
}
.hac-related-content.hac-related-grey h2{
  color: var(--hac-green);
}

/* ============= FALE CONOSCO ============= */
.hac-fc-wrap{
  display: grid; grid-template-columns: 325px 1fr; gap: 120px;
  max-width: var(--hac-container); margin: 0 auto; padding: 80px 136px;
  align-items: start;
}
.hac-fc-wrap .title h2{
  font-size: 48px; font-weight: 700; color: var(--hac-green);
  line-height: 1; margin: 0 0 20px;
}
.hac-fc-wrap .title p{
  font-size: 17px; color: var(--hac-text); margin: 0;
}
.hac-form{ display: flex; flex-direction: column; gap: 18px; max-width: 680px; }
.hac-form .field{ display: flex; flex-direction: column; gap: 6px; }
.hac-form label{ font-size: 14px; font-weight: 700; color: var(--hac-text); }
.hac-form input,
.hac-form textarea,
.hac-form select{
  border: 1.5px solid #BFD9C6; border-radius: 60px;
  padding: 16px 22px; font-size: 15px; color: var(--hac-text);
  background: #fff; font-family: inherit; outline: none;
  transition: border-color .2s;
}
.hac-form textarea{
  border-radius: 24px; resize: vertical; min-height: 120px;
}
.hac-form select{
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232D8F44' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 22px center;
  padding-right: 50px;
}
.hac-form input:focus,
.hac-form textarea:focus,
.hac-form select:focus{ border-color: var(--hac-green); }
.hac-form .actions{ display: flex; justify-content: flex-end; margin-top: 8px; }
.hac-form .btn-submit{
  background: var(--hac-green); color: #fff; border: 0;
  padding: 14px 40px; border-radius: 60px; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: background .2s;
}
.hac-form .btn-submit:hover{ background: var(--hac-green-dark); }
/* botão desabilitado enquanto o Turnstile não validar (hac-captcha.js) */
.btn-submit:disabled{ opacity: .55; cursor: not-allowed; }

.hac-fc-contatos{
  background: #F4F4F4; padding: 60px 136px;
}
.hac-fc-contatos h2{
  text-align: center; color: var(--hac-green); font-size: 32px;
  font-weight: 700; margin: 0 0 36px;
}
.hac-fc-contatos .grid{
  max-width: var(--hac-container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.hac-fc-contatos .card{
  background: #fff; border-radius: 8px; padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  min-height: 150px;
  display: flex; flex-direction: column; gap: 12px;
}
.hac-fc-contatos .card h3{
  font-size: 15px; font-weight: 700; color: var(--hac-text);
  margin: 0 0 4px; letter-spacing: .3px;
}
.hac-fc-contatos .card p{
  font-size: 13px; color: var(--hac-text-muted); margin: 0;
}
.hac-fc-contatos .card .email{
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--hac-text); margin: 0;
}
.hac-fc-contatos .card .email svg{ color: var(--hac-green); flex-shrink: 0; }
.hac-fc-contatos .card .email a{ color: var(--hac-text); }
.hac-fc-contatos .card .email a:hover{ color: var(--hac-green); }
.hac-fc-contatos .card .btn-acessar{
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 18px; border-radius: 60px;
  background: var(--hac-green); color: #fff; font-size: 13px; font-weight: 600;
  align-self: flex-start; margin-top: auto;
}

.hac-fc-assuntos{
  max-width: var(--hac-container); margin: 0 auto; padding: 60px 136px;
  display: grid; grid-template-columns: 325px 1fr; gap: 80px;
  row-gap: 40px;
}
.hac-fc-assuntos .assunto-title{
  font-size: 20px; font-weight: 700; color: var(--hac-text); line-height: 1.2; margin: 0;
}
.hac-fc-assuntos .assunto-text{
  font-size: 15px; color: var(--hac-text); line-height: 1.55; margin: 0;
  max-width: 720px;
}
.hac-fc-assuntos .assunto-text strong{ font-weight: 700; }
.hac-fc-assuntos .assunto-text a{ color: var(--hac-green); font-weight: 600; }
.hac-fc-assuntos .assunto-body{
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
}
.hac-fc-assuntos .assunto-body .hac-cta-pills{ margin-top: 0; }

@media (max-width: 992px){
  .hac-fc-wrap{ padding: 48px 24px; grid-template-columns: 1fr; gap: 32px; }
  .hac-fc-wrap .title h2{ font-size: 36px; }
  .hac-fc-contatos{ padding: 40px 24px; }
  .hac-fc-contatos .grid{ grid-template-columns: 1fr 1fr; }
  .hac-fc-assuntos{ padding: 40px 24px; grid-template-columns: 1fr; gap: 16px; row-gap: 24px; }
}
@media (max-width: 600px){
  .hac-fc-contatos .grid{ grid-template-columns: 1fr; }
}

/* ============= DOE / HOSPITAL DIA / HOTELARIA – seções genéricas reaproveitam hac-esp-band, hac-esp-2col, etc ============= */

/* Cards de opção de doação (Doe.html) */
.hac-doe-cards{
  padding: 60px 136px; background: #fff;
}
.hac-doe-cards .grid{
  max-width: var(--hac-container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.hac-doe-cards .card{
  background: #fff; border: 1.5px solid #DCEADF; border-radius: 12px;
  padding: 40px; display: flex; flex-direction: column; gap: 16px;
}
.hac-doe-cards .card .ico{
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--hac-green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.hac-doe-cards .card h3{
  font-size: 22px; font-weight: 700; color: var(--hac-text); margin: 0;
}
.hac-doe-cards .card p{
  font-size: 15px; color: var(--hac-text); line-height: 1.5; margin: 0;
}
.hac-doe-cards .card .hac-cta-pill{
  align-self: flex-start; margin-top: 8px;
}
@media (max-width: 992px){
  .hac-doe-cards{ padding: 40px 24px; }
  .hac-doe-cards .grid{ grid-template-columns: 1fr; }
}

/* Formas de doar - timeline / list */
.hac-doe-steps{
  padding: 60px 136px; background: #F4F4F4;
}
.hac-doe-steps h2{
  text-align: center; color: var(--hac-green); font-size: 32px;
  font-weight: 700; margin: 0 0 40px;
}
.hac-doe-steps .grid{
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.hac-doe-steps .step{
  background: #fff; padding: 32px; border-radius: 12px;
  display: flex; flex-direction: column; gap: 12px;
  text-align: left;
}
.hac-doe-steps .step .num{
  font-size: 48px; font-weight: 800; color: var(--hac-green); line-height: 1;
}
.hac-doe-steps .step h3{
  font-size: 18px; font-weight: 700; color: var(--hac-text); margin: 0;
}
.hac-doe-steps .step p{
  font-size: 14px; color: var(--hac-text); line-height: 1.5; margin: 0;
}
@media (max-width: 992px){
  .hac-doe-steps{ padding: 40px 24px; }
  .hac-doe-steps .grid{ grid-template-columns: 1fr; }
}

/* Departamento de Ensino e Pesquisa - cards programas */
.hac-ensino-cards{
  padding: 60px 136px; background: #fff;
}
.hac-ensino-cards .grid{
  max-width: var(--hac-container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hac-ensino-cards .card{
  background: #F4F4F4; padding: 32px; border-radius: 12px;
  display: flex; flex-direction: column; gap: 12px;
}
.hac-ensino-cards .card h3{
  font-size: 20px; font-weight: 700; color: var(--hac-green); margin: 0;
}
.hac-ensino-cards .card p{
  font-size: 14px; color: var(--hac-text); line-height: 1.55; margin: 0;
}
.hac-ensino-cards .card .hac-cta-pill{ align-self: flex-start; margin-top: 8px; font-size: 13px; padding: 10px 20px; }
@media (max-width: 992px){
  .hac-ensino-cards{ padding: 40px 24px; }
  .hac-ensino-cards .grid{ grid-template-columns: 1fr; }
}

/* ============= SHAC TALK – Formulário “Quer participar?” ============= */
.hac-shac-form{
  padding: 80px 136px 100px; background: #fff;
}
.hac-shac-form .row{
  max-width: var(--hac-container); margin: 0 auto;
  display: grid; grid-template-columns: 360px 1fr; gap: 96px; align-items: start;
}
.hac-shac-form .title h2{
  font-size: 32px; font-weight: 700; color: var(--hac-green-title); margin: 0 0 12px;
  line-height: 1.1;
}
.hac-shac-form .title p{
  font-size: 16px; color: var(--hac-text); line-height: 1.55; margin: 0;
}
.hac-shac-form .fields{
  display: flex; flex-direction: column; gap: 20px;
}
.hac-shac-form .field{ display: flex; flex-direction: column; gap: 6px; }
.hac-shac-form .actions{ display: flex; justify-content: flex-end; margin-top: 4px; }
.hac-shac-form label{
  font-size: 13px; font-weight: 600; color: var(--hac-text);
}
.hac-shac-form input, .hac-shac-form select, .hac-shac-form textarea{
  border: 1px solid #D6D6D6; border-radius: 8px; padding: 12px 14px;
  font: inherit; font-size: 14px; color: var(--hac-text); background: #fff;
}
.hac-shac-form input:focus, .hac-shac-form select:focus, .hac-shac-form textarea:focus{
  outline: none; border-color: var(--hac-green);
}
.hac-shac-form textarea{ resize: vertical; min-height: 110px; }
.hac-shac-form .btn-submit{
  background: var(--hac-green); color: #fff; border: 0; border-radius: 40px;
  padding: 14px 48px; font-weight: 600; font-size: 15px; cursor: pointer;
}
.hac-shac-form .btn-submit:hover{ background: #236B34; }
@media (max-width: 992px){
  .hac-shac-form{ padding: 40px 24px; }
  .hac-shac-form .row{ grid-template-columns: 1fr; gap: 24px; }
}

/* ============= DOE (Pessoa Física) – Contador de valor captado ============= */
.hac-counter-section{
  padding: 20px 136px 60px; background: #fff; text-align: center;
}
.hac-counter-section h2{
  font-size: 28px; font-weight: 700; color: var(--hac-green); margin: 0 0 24px;
}
.hac-counter{
  display: inline-flex; gap: 4px; align-items: flex-start; font-family: 'Montserrat', sans-serif;
}
.hac-counter .group{ display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hac-counter .digits{ display: flex; gap: 4px; }
.hac-counter .digit{
  width: 44px; height: 56px; background: var(--hac-green); color: #fff;
  border-radius: 6px; display: grid; place-items: center;
  font-size: 30px; font-weight: 700;
}
.hac-counter .cifrao{ background: var(--hac-green); color: #fff; padding: 0 12px; }
.hac-counter .group-label{ font-size: 10px; font-weight: 700; color: var(--hac-green); letter-spacing: 1.5px; }

/* Variant: Vidas Impactadas — mesmo contador, sem cifrão, padding superior maior
   pra separar visualmente do tríptico de iniciativas acima. */
.hac-counter-section.hac-vidas-section{
  padding: 60px 136px;
}
@media (max-width: 992px){
  .hac-counter-section{ padding: 20px 24px 40px; }
  .hac-counter .digit{ width: 28px; height: 40px; font-size: 18px; }
}

/* ============= DOE – Faixa verde “Sua contribuição salva vidas” + foto ============= */
.hac-doe-quote{
  background: var(--hac-green); color: #fff;
  padding: 60px 24px 200px;   /* sobra inferior pra foto sobrepor sem cobrir texto/CTA */
  text-align: center;
}
.hac-doe-quote h2{
  font-size: 32px; font-weight: 700; margin: 0 0 16px; color: #fff;
}
.hac-doe-quote p{
  font-size: 16px; line-height: 1.6; margin: 0 auto 24px; max-width: 640px; color: rgba(255,255,255,.95);
}
.hac-doe-quote .hac-cta-pill{ color: #fff; border-color: #fff; background: transparent; }
/* Foto que segue: sobe pra metade ficar dentro da banda verde */
.hac-doe-quote + .hac-esp-photoband{ padding-top: 0; }
.hac-doe-quote + .hac-esp-photoband .photo{ margin-top: -160px; }
@media (max-width: 992px){
  .hac-doe-quote{ padding-bottom: 140px; }
  .hac-doe-quote + .hac-esp-photoband .photo{ margin-top: -100px; }
}

/* ============= DOE – “Conheça as iniciativas” (faixa verde + tríptico) ============= */
.hac-doe-iniciativas-intro{
  background: var(--hac-green); padding: 60px 24px 40px; text-align: center; color: #fff;
}
.hac-doe-iniciativas-intro h2{ font-size: 34px; font-weight: 700; margin: 0 0 14px; color: #fff; }
.hac-doe-iniciativas-intro p{ font-size: 16px; color: rgba(255,255,255,.9); max-width: 520px; margin: 0 auto; }

.hac-doe-triptych{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  background: var(--hac-green);
}
.hac-doe-triptych .card{
  position: relative; aspect-ratio: 3/4.5; overflow: hidden; display: block;
  color: #fff; text-decoration: none;
}
.hac-doe-triptych .card img{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.3) brightness(.85);
}
.hac-doe-triptych .card .ring{
  position: absolute; inset: 10% 5%; border: 18px solid; border-radius: 50%;
  border-color: currentColor; clip-path: inset(0 0 0 0 round 50%);
}
.hac-doe-triptych .card .ring::after{
  content:''; position: absolute; width: 28px; height: 28px; border-radius: 50%;
  background: currentColor; bottom: 10%; right: 18%;
}
.hac-doe-triptych .card.infancia{ color: #4AB8E0; }
.hac-doe-triptych .card.idoso{ color: #7B4FB5; }
.hac-doe-triptych .card.circular{ color: #3FA34D; }
.hac-doe-triptych .card .vlabel{
  position: absolute; left: 8px; bottom: 16px; writing-mode: vertical-rl;
  transform: rotate(180deg); color: #fff; font-weight: 700; font-size: 14px;
  letter-spacing: 1px;
}
.hac-doe-triptych .card.infancia .vlabel{ writing-mode: horizontal-tb; transform: none; }
@media (max-width: 992px){
  .hac-doe-triptych{ grid-template-columns: 1fr; }
}

/* ============= DOE – CTA “Doe” / “Transparência e Governança” ============= */
.hac-doe-cta-band{
  background: var(--hac-green); padding: 60px 136px;
}
/* Inner uses table-cell-like trick via inline-flex: shrink-to-fit, then center via margin auto.
   Classes únicas para esta seção (não compartilha .row genérico). */
.hac-doe-cta-band .hac-doe-cta-inner{
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  /* Para centralizar inline-flex, o pai precisa de text-align: center */
}
.hac-doe-cta-band{ text-align: center; }
.hac-doe-cta-band .hac-doe-cta-title{
  color: #fff; font-size: 32px; font-weight: 700; margin: 0;
  flex: 0 0 auto;
  text-align: left;
  white-space: nowrap;
}
.hac-doe-cta-band .hac-doe-cta-pills{
  display: flex; flex-direction: column; gap: 12px;
  flex: 0 0 420px;
  max-width: 100%;
  text-align: left;
}
.hac-doe-cta-band .hac-cta-pill{ color: #fff; border-color: #fff; background: transparent; justify-content: space-between; }

.hac-gov-band{
  background: #fff; padding: 60px 136px;
}
.hac-gov-band .row{
  max-width: var(--hac-container); margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start;
}
.hac-gov-band h2{ color: var(--hac-green); font-size: 28px; font-weight: 700; margin: 0; line-height: 1.15; }
.hac-gov-band .links{
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px;
}
.hac-gov-band .hac-cta-pill{
  color: var(--hac-text); border-color: #D6D6D6; background: #fff;
  padding: 14px 24px; font-size: 14px; font-weight: 500; justify-content: space-between;
}
@media (max-width: 992px){
  .hac-doe-cta-band, .hac-gov-band{ padding: 40px 24px; }
  .hac-gov-band .row{ grid-template-columns: 1fr; gap: 24px; }
  .hac-gov-band .links{ grid-template-columns: 1fr; }
}
/* Doe CTA mantém horizontal até 640px (h2 + pills 420px = ~553px de conteúdo).
   Só empilha em telas realmente pequenas. */
@media (max-width: 640px){
  .hac-doe-cta-band .hac-doe-cta-inner{ flex-direction: column; gap: 24px; align-items: center; }
  .hac-doe-cta-band .hac-doe-cta-pills{ flex: 0 0 100%; }
}

/* ============= DOE – Grandes players (logos grid) ============= */
.hac-players{
  padding: 60px 136px 80px; background: #fff; text-align: center;
}
.hac-players h2{
  font-size: 28px; font-weight: 700; color: var(--hac-green); margin: 0 0 6px;
}
.hac-players .subtitle{
  font-size: 16px; color: var(--hac-text); margin: 0 0 36px;
}
.hac-players .grid{
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 28px 32px;
  align-items: center; justify-items: center;
}
.hac-players .grid img, .hac-players .grid .logo{
  max-width: 100%; height: 40px; object-fit: contain; opacity: .85;
  display: grid; place-items: center; color: #999; font-weight: 700; font-size: 13px;
}
@media (max-width: 992px){
  .hac-players{ padding: 40px 24px; }
  .hac-players .grid{ grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ============= DOE PESSOA FÍSICA – Fluxograma + Modalidades 6%/3% ============= */
.hac-pf-modal-intro{
  background: var(--hac-green); padding: 40px 24px 50px; text-align: center; color: #fff;
}
.hac-pf-modal-intro h2{ font-size: 32px; font-weight: 700; color: #fff; margin: 0 0 10px; }
.hac-pf-modal-intro p{ font-size: 16px; color: rgba(255,255,255,.92); margin: 0; }

.hac-pf-flow{
  padding: 60px 136px; background: #fff;
}
.hac-pf-flow .row{
  max-width: var(--hac-container); margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 300px 1fr;
  gap: 40px;
  align-items: start;
}
.hac-pf-flow .title h2{
  font-size: 40px; font-weight: 700; color: var(--hac-green); margin: 0; line-height: 1.05;
}
.hac-pf-flow .steps{
  display: flex; flex-direction: column; gap: 10px; align-items: stretch;
}
.hac-pf-flow .step{
  border: 2px solid var(--hac-green); border-radius: 14px; padding: 16px 22px;
  font-size: 14px; color: var(--hac-text); text-align: center; background: #fff;
  font-weight: 500; line-height: 1.45;
}
.hac-pf-flow .arrow-down{
  text-align: center; color: var(--hac-green); font-size: 22px;
  line-height: 1; margin: 2px 0;
}

/* Branch (col 3): box top "Você pode apoiar..." + 2 sub-colunas (6% / 3%) */
.hac-pf-flow .branch{
  display: flex; flex-direction: column; gap: 12px;
}
.hac-pf-flow .branch-head{
  background: rgba(45,143,68,.06);
  text-align: center; font-weight: 500;
}
.hac-pf-flow .modals{
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 8px;
}

.hac-pf-flow .modal-col{
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hac-pf-flow .modal-col .pct{
  background: transparent; padding: 0; box-shadow: none; border-radius: 0;
  color: var(--hac-green);
  font-size: 56px; font-weight: 800; line-height: 1; letter-spacing: -.02em;
}
.hac-pf-flow .modal-col .pill-info{
  background: #f4f6f8; border: 0; border-radius: 16px;
  padding: 14px 22px; font-size: 13px;
  color: var(--hac-text); text-align: center; max-width: 100%; line-height: 1.5;
  font-weight: 500;
}
.hac-pf-flow .modal-col ul{
  margin: 10px 0 0; padding: 0 4px; list-style: none; font-size: 13px;
  color: var(--hac-text); width: 100%; max-width: 280px;
}
.hac-pf-flow .modal-col li{
  position: relative; padding-left: 22px; margin-bottom: 12px; line-height: 1.45;
}
.hac-pf-flow .modal-col li::before{
  content: ''; position: absolute; left: 0; top: 4px; width: 12px; height: 12px;
  border: 2px solid var(--hac-green); border-radius: 50%; background: transparent;
}

/* Prestação de contas – 2col estilo e CTA */
.hac-pf-prestacao{
  padding: 20px 136px 60px; background: #fff;
}
.hac-pf-prestacao .row{
  max-width: var(--hac-container); margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start;
}
.hac-pf-prestacao h2{ font-size: 22px; font-weight: 700; color: var(--hac-green-title); margin: 0; }
.hac-pf-prestacao p{ font-size: 15px; color: var(--hac-text); line-height: 1.55; margin: 0 0 20px; }
.hac-pf-prestacao .cta-wrap{ display: flex; margin-top: 16px; }
.hac-pf-prestacao .hac-cta-pill{ color: var(--hac-green); border-color: var(--hac-green); }

/* PDF downloads (cards) */
.hac-pf-pdfs{ padding: 20px 136px 40px; background: #fff; }
.hac-pf-pdfs .section-head{
  max-width: var(--hac-container); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #E0E0E0; padding-bottom: 10px;
}
.hac-pf-pdfs .section-head h3{
  color: #D93A2E; font-size: 18px; font-weight: 700; margin: 0;
}
.hac-pf-pdfs .section-head .caret{ color: #777; }
.hac-pf-pdfs .grid{
  max-width: var(--hac-container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.hac-pdf-card{
  border: 1px solid #E0E0E0; border-radius: 10px; padding: 20px 24px;
  display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; background: #fff;
}
.hac-pdf-card .pdf-icon{
  width: 48px; height: 56px; border-radius: 4px; background: #fff;
  border: 1.5px solid #555; position: relative; display: grid; place-items: end center; font-size: 10px;
  font-weight: 800; color: #555; padding-bottom: 10px;
}
.hac-pdf-card .pdf-icon::before{
  content: ''; position: absolute; top: -1px; right: -1px; width: 14px; height: 14px;
  background: #fff; border-left: 1.5px solid #555; border-bottom: 1.5px solid #555;
  transform: rotate(-90deg); transform-origin: top right;
}
.hac-pdf-card h4{ font-size: 18px; font-weight: 700; color: var(--hac-green-title); margin: 0 0 6px; }
.hac-pdf-card p{ font-size: 13px; color: var(--hac-text); line-height: 1.45; margin: 0 0 12px; }
.hac-pdf-card .btn-baixar{
  background: var(--hac-green); color: #fff; border: 0; border-radius: 40px;
  padding: 10px 24px; font-weight: 600; font-size: 13px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.hac-pdf-card .btn-baixar:hover{ background: #236B34; }
@media (max-width: 992px){
  .hac-pf-flow, .hac-pf-prestacao, .hac-pf-pdfs{ padding-left: 24px; padding-right: 24px; }
  .hac-pf-flow .row, .hac-pf-prestacao .row{ grid-template-columns: 1fr; gap: 24px; }
  .hac-pf-flow .modals{ grid-template-columns: 1fr; gap: 24px; }
  .hac-pf-pdfs .grid{ grid-template-columns: 1fr; }
}

/* Cartilha band */
.hac-cartilha{
  background: var(--hac-green); padding: 60px 24px;
}
.hac-cartilha .box{
  max-width: 1100px; margin: 0 auto; background: #E8E8E8; border-radius: 12px;
  padding: 40px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.hac-cartilha h3{
  font-size: 20px; font-weight: 400; color: var(--hac-text); margin: 0 0 6px;
}
.hac-cartilha h2{
  font-size: 44px; font-weight: 800; color: var(--hac-green); margin: 0; line-height: 1.05;
}
.hac-cartilha .laptop{
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.hac-cartilha .laptop img{
  display: block;
  width: 100%;
  height: auto;
}
.hac-cartilha-cta{
  background: #fff; padding: 28px 24px 60px; text-align: center;
}
.hac-cartilha-cta .hac-cta-pill{
  color: var(--hac-text); border-color: #D6D6D6; background: #fff;
}
@media (max-width: 992px){
  .hac-cartilha .box{ grid-template-columns: 1fr; padding: 24px; }
  .hac-cartilha h2{ font-size: 32px; }
}

/* ============= UTILITÁRIOS DE PADDING/SPACING ============= */
.pad-t-0{ padding-top: 0 !important; }
.pad-t-48{ padding-top: 48px !important; }
.pad-t-60{ padding-top: 60px !important; }
.pad-b-48{ padding-bottom: 48px !important; }
.pad-b-60{ padding-bottom: 60px !important; }
.pad-b-80{ padding-bottom: 80px !important; }

/* ============= H2 SLIM (carrosséis de prêmios) ============= */
.h2-section-kicker{
  font-size: 16px; font-weight: 700; text-transform: none;
  color: var(--hac-green); letter-spacing: 0;
}
.h2-section-md{
  font-size: 26px;
}

/* ============= LINKS INLINE / EMAIL ============= */
.link-green-inline{ color: var(--hac-green); font-weight: 600; }
.link-green-inline:hover{ color: var(--hac-green-dark); }
.email-link{
  color: var(--hac-text); text-decoration: underline;
}
.email-link:hover{ color: var(--hac-green); }
.email-link-green{
  color: var(--hac-green); text-decoration: underline;
}

/* ============= CONTACT LIST (utilitário em hotelaria/imprensa) ============= */
.hac-contact-list-stack{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.hac-contact-list-stack li{
  display: inline-flex; align-items: center; gap: 10px;
}
.hac-contact-list-stack li.bold{ font-weight: 600; }
.hac-contact-paragraph{
  display: inline-flex; align-items: center; gap: 12px;
}

/* ============= BACKGROUNDS UTILITÁRIOS ============= */
.bg-light-gray{ background: #F4F4F4 !important; }

/* ============= PHOTOBAND WRAPPER (verde / branco) ============= */
.hac-esp-photoband.bg-green{
  background: var(--hac-green);
}
.hac-esp-photoband.bg-white{
  background: transparent !important;
}
.hac-esp-photoband-photo-centered{
  margin: 0 auto;
  max-width: 1100px;
}
.photo-16-9{ aspect-ratio: 16 / 9; }
.photo-h-560{ height: 560px; }
.hac-photoband-padded{ padding: 40px 24px; }

/* ============= CARD DE DESTAQUE (90% chances de cura — complexo-cirurgico) ============= */
.hac-esp-stat-card-wrap{
  padding: 60px 24px; max-width: 1200px; margin: 0 auto;
}
.hac-esp-stat-card{
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: 8px; overflow: hidden;
}
.hac-esp-stat-card .text-side{
  background: var(--hac-green); color: #fff; padding: 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.hac-esp-stat-card .text-side .lead{
  font-size: 18px; margin: 0 0 12px; font-weight: 400; line-height: 1.3;
}
.hac-esp-stat-card .text-side .num{
  font-size: 84px; font-weight: 800; line-height: 1; margin: 0 0 8px;
}
.hac-esp-stat-card .text-side .sub{
  font-size: 28px; font-weight: 700; margin: 0 0 16px; line-height: 1.1;
}
.hac-esp-stat-card .text-side .meta{
  font-size: 14px; margin: 0;
}
.hac-esp-stat-card .photo-side{
  background-size: cover; background-position: center;
  min-height: 320px;
}
@media (max-width: 768px){
  .hac-esp-stat-card{ grid-template-columns: 1fr; }
  .hac-esp-stat-card .text-side{ padding: 32px; }
  .hac-esp-stat-card .text-side .num{ font-size: 64px; }
  .hac-esp-stat-card .text-side .sub{ font-size: 22px; }
}

/* ============= CTA PILL OUTLINE GREEN (variante explícita) ============= */
.hac-cta-pill.outline-green{
  color: var(--hac-green); border-color: var(--hac-green); background: #fff;
}
.hac-cta-pill.outline-green:hover{
  color: #fff; background: var(--hac-green);
}

/* ============= LOGO COM FILTRO BRIGHT/INVERT (footer) ============= */
.logo-invert{ filter: brightness(0) invert(1); }

/* ============= UTILITÁRIOS GERAIS ============= */
.m-0{ margin: 0 !important; }
.mt-0{ margin-top: 0 !important; }
.mt-12{ margin-top: 12px !important; }
.w-auto{ width: auto !important; }
.font-normal{ font-style: normal; }
.align-self-start{ align-self: flex-start; }
.central-tight{ margin-bottom: 4px; }
.telefone-white{ color: #fff; }

/* ============= AB FILTER LABEL (corpo-clinico) ============= */
.hac-cc-dropdown-label{
  font-size: 12px; color: var(--hac-text); margin-bottom: 8px;
}

/* ============= CC HEAD WRAPPER (corpo-clinico) ============= */
.hac-cc-head-inner{
  width: 100%; max-width: var(--hac-container);
  margin: 0 auto;
  padding: 0 0px;
  position: relative; /* contexto p/ o menu flutuante .hac-cc-dropdowns */
}

/* ============================================================
   MOBILE SAFETY NET (≤ 768px e ≤ 480px)
   Garante que nenhuma seção quebra em telas pequenas.
   ============================================================ */
@media (max-width: 768px){

  .hac-esp-band p {
    font-size: 18px;
    line-height: 1.2;
  }


  .hac-cc-head-inner{
    padding: 0 24px 0 0;
  }

  .hac-pacientes-orientacoes .content ul li, .hac-pacientes-acompanhantes .content ul li, .hac-pacientes-retirada .content ul li, .info-list li {
    justify-content: space-between;
    flex-direction: column;
  }

  .hac-cc-whats .phone {
    font-size: 20px;
  }


  .hac-est-stats .item {
      display: flex;
      gap: 0px;
      align-items: flex-start;
  }

  .hac-est-stats .item .ico {
    justify-content: flex-start;
    width: 80px;
  }

  .hac-sobre-photo-band .green-band {
    height: 250px;
  }

  .hac-sobre-photo-band.tall .photo {
    max-width: 87%;
  }

  .hac-est-stats .item .ico img {
    width: 79%;
  }

  .hac-values-rows, .hac-sobre-hist {
    padding: 50px 0;
  }

  .hac-page-hero{ min-height: 280px; padding: 32px 24px 40px; }
  .hac-page-hero h1{ font-size: clamp(28px, 8vw, 44px); }
  .hac-presentation{ padding: 60px 0; }
  .hac-presentation .row-2col{ grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
  .hac-container{ padding: 0 24px; }
  .hac-home-busca .hac-container {padding: 0px !important}

  .hac-gov-body, .hac-gov-policy {
    padding: 10px;
    margin-top: 20px;
  }

  .hac-gov-featured p {
    font-size: 18px;
  }

  .hac-gov-pdfcard.withcover {
    padding: 20px;
    grid-template-columns: 120px 1fr;
  }

  .hac-gov-pdfcard {
    padding: 20px;
  }


  .hac-gov-pdfcard.withcover .cov {
    width: auto;
  }

  .hac-gov-pdfcard h3, .hac-gov-pdfcard.withcover h3 {
    font-size: 17px;
  }

  .hac-btn-download, .hac-btn-acessar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 25px;
    border-radius: 60px;
    background: var(--hac-green);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 2px rgba(0, 0, 0, .25);
    transition: background .2s ease, transform .15s ease;
  }

  .hac-cta-pills.botoes {
    flex-wrap: wrap;
  }
  .hac-footer .central{
    font-size: 18px;
  }
  .hac-related-content {
    padding: 35px 0px 50px;
  }
  .hac-related-footer{
    justify-content: center
  }
  .botao-como{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: var(--hac-radius-pill);
    padding: 15px 40px 15px 23px;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px !important;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
  }
  .hac-esp-2col .row{ grid-template-columns: 1fr; gap: 24px; }
  .hac-esp-2col h2{ font-size: 28px; }
  .hac-esp-band{ padding: 48px 0; }
  .hac-esp-band .row{ grid-template-columns: 1fr; gap: 24px; }
  .hac-doe-triptych{ grid-template-columns: 1fr; gap: 16px; }
  .hac-doe-triptych .card{ aspect-ratio: 16/10; }
  .hac-counter{ flex-wrap: wrap; gap: 8px; justify-content: center; }
  .hac-counter .group .digits{ font-size: 36px; }
  .hac-counter .group-label{ font-size: 10px; }
  .hac-equipe-band{ overflow-x: auto; }
  .hac-equipe-band .medico{ min-width: 200px; }
  .hac-est-medicos{ overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .hac-bignum-grid{ grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .hac-fc-form{ grid-template-columns: 1fr; gap: 24px; }
  .hac-fc-assuntos{ grid-template-columns: 1fr; gap: 24px; }
  .hac-cc-grid{ grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .hac-cc-card{ height: 220px; }
  .hac-pagination{ flex-wrap: wrap; gap: 4px; }
  .hac-suites{ grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .hac-antes-depois{ grid-template-columns: 1fr !important; gap: 24px; }
  .hac-rc-card .hac-rc-thumb{ height: 180px; }
  .hac-related-content h2{ font-size: 28px; }
  .hac-projetos-bottom{ grid-template-columns: 1fr; gap: 32px; }
  .hac-doe-players{ grid-template-columns: repeat(3, 1fr) !important; gap: 8px; }
  .hac-doe-players .logo{ font-size: 11px; padding: 8px 4px; }
  .hac-tec-band{ grid-template-columns: 1fr 1fr !important; gap: 8px; }
  .hac-est-stats{ grid-template-columns: 1fr !important; gap: 24px; padding: 48px 16px; }
  .hac-est-search-row{ grid-template-columns: 1fr; gap: 12px; }
  .hac-est-filters{ flex-wrap: wrap; gap: 8px; }
  .hac-cta-pill{ font-size: 14px; padding: 10px 18px; }
  .hac-footer{ padding: 48px 0 0; }
  .hac-footer .footer-cols{ gap: 20px; padding: 0 16px; }
  .hac-footer .footer-logo-link{ gap: 12px; }
  .hac-footer .footer-logo-symbol{ height: 80px; }
  .hac-footer .footer-logo-text{ height: 40px; }
  .hac-footer .footer-links{ grid-template-columns: 1fr !important; }
  .hac-footer .telefone{ font-size: 24px; }
  .hac-footer-bottom{ flex-direction: column; align-items: flex-start; padding: 24px 16px; }
  .hac-footer-bottom .links-bottom{ flex-wrap: wrap; gap: 12px; }
  .hac-footer-bottom .copy{ font-size: 12px; }
  .hac-fc-card{ padding: 20px; }
  .hac-visita-card{ padding: 20px; }
  .hac-visita-card .horario{ font-size: 24px; }
  .hac-acc-grid{ grid-template-columns: 1fr !important; gap: 16px; }
  .hac-doc-card{ padding: 16px; }
  .hac-pf-flux{ padding: 32px 0; }
  .hac-pf-step{ padding: 16px; }
  .hac-pf-modal-cols{ grid-template-columns: 1fr !important; gap: 16px; }
}

@media (max-width: 480px){
  .hac-page-hero{ min-height: 220px; }
  .hac-page-hero h1{ font-size: clamp(24px, 7vw, 36px); line-height: 1.05; }
  .hac-presentation{ padding: 40px 0; }
  .hac-presentation h2{ font-size: 22px; }
  .hac-presentation .lead{ font-size: 16px; }
  .hac-search-input{ font-size: 14px; padding: 10px 36px 10px 16px; }
  .hac-esp-2col h2{ font-size: 24px; }
  .hac-esp-2col p{ font-size: 15px; line-height: 1.55; }
  .hac-esp-band h2{ font-size: 26px; margin-bottom: 20px}
  .hac-doe-triptych .card .vlabel{ font-size: 14px; padding: 8px 12px; }
  .hac-counter .group .digits{ font-size: 28px; }
  .hac-counter .group .digit{ width: auto; min-width: 22px; padding: 4px 6px; }
  .hac-bignum .num{ font-size: 36px !important; }
  .hac-bignum .label{ font-size: 12px !important; }
  .hac-cc-grid{ grid-template-columns: 1fr !important; }
  .hac-cc-card{ height: 100%; }
  .hac-doe-players{ grid-template-columns: repeat(2, 1fr) !important; }
  .hac-tec-band{ grid-template-columns: 1fr !important; }
  .hac-suites{ grid-template-columns: 1fr !important; }
  .hac-est-medicos .hac-est-medico,
  .hac-equipe-band .medico{ min-width: 160px; }
  .hac-related-content h2{ font-size: 24px; }
  .hac-rc-card h3{ font-size: 16px; }
  .hac-fc-assunto-title{ font-size: 18px; }
  .hac-footer .footer-logo-symbol{ height: 80px; }
  .hac-footer .footer-logo-text{ height: 32px; }
  .hac-footer .telefone{ font-size: 20px; }
  .hac-footer .endereco{ font-size: 14px; }
  .hac-footer-bottom .copy{ font-size: 11px; }
  .hac-footer-bottom .social{ gap: 12px; }
  .hac-footer-bottom .social svg{ width: 24px; height: 24px; }
  .hac-mobile-toggle{ font-size: 24px; }
  h2{ font-size: 24px; }
  h3{ font-size: 18px; }
  .hac-cta-pill{ font-size: 13px; padding: 8px 14px; }
  .hac-est-search-input{ font-size: 14px; padding: 10px 36px 10px 16px; }
  .hac-acc-head{ padding: 16px; font-size: 14px; }
  .hac-pagin button{ width: 28px; height: 28px; }
}

/* Container max-width safety: garante que nada estoura horizontalmente */
img, video, iframe{ max-width: 100%; height: auto; }
body{ overflow-x: hidden; }

/* === Batch 2 page fixes === */

/* estrutura.html — Big Numbers mosaic photo cell variant */
.hac-bignum--photo{
  background-size: cover;
  background-position: center;
  min-height: 220px;
  padding: 0;
}

/* sobre.html — timeline cell photo helper (some cells render real photos) */
.hac-timeline-photo{
  background-size: cover;
  background-position: center;
}

/* corpo-clinico.html — minor: ensure no duplicate hero stack adds vertical padding */
.hac-cc-extra-spacer{ display: none !important; }

/* ============= ÁREA DO PACIENTE (V2) ============= */

/* Blocos 2-col compartilham layout com .hac-esp-2col */
.hac-pacientes-orientacoes,
.hac-pacientes-acompanhantes,
.hac-pacientes-retirada,
.hac-pacientes-central,
.hac-pacientes-agende{
  padding: 80px 136px;
  background: #fff;
}
.hac-pacientes-orientacoes + .hac-pacientes-acompanhantes,
.hac-pacientes-acompanhantes + .hac-pacientes-retirada,
.hac-pacientes-retirada + .hac-pacientes-retirada,
.hac-pacientes-retirada + .hac-pacientes-orientacoes,
.hac-pacientes-orientacoes + .hac-pacientes-orientacoes,
.hac-pacientes-central + .hac-pacientes-acompanhantes,
.hac-pacientes-orientacoes + .hac-visitas-section{ padding-top: 0; }

.hac-pacientes-orientacoes .row,
.hac-pacientes-acompanhantes .row,
.hac-pacientes-retirada .row,
.hac-pacientes-central .row,
.hac-pacientes-agende .row{
  max-width: 1648px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start;
}
.hac-pacientes-orientacoes h2,
.hac-pacientes-acompanhantes h2,
.hac-pacientes-retirada h2,
.hac-pacientes-central h2,
.hac-pacientes-agende h2{
  font-weight: 700; font-size: 30px; line-height: 1.1;
  color: var(--hac-text); margin: 0;
}
.hac-pacientes-orientacoes .content > p,
.hac-pacientes-acompanhantes .content > p,
.hac-pacientes-retirada .content > p,
.hac-pacientes-central .content > p,
.hac-pacientes-agende .content > p{
  font-size: 18px; line-height: 1.55; color: var(--hac-text); margin: 0 0 16px;
}
.hac-pacientes-orientacoes .content ul,
.hac-pacientes-acompanhantes .content ul,
.hac-pacientes-retirada .content ul{
  margin: 0 0 18px; padding-left: 22px;
}
.hac-pacientes-orientacoes .content ul li,
.hac-pacientes-acompanhantes .content ul li,
.hac-pacientes-retirada .content ul li{
  font-size: 16px; line-height: 1.6; color: var(--hac-text); margin-bottom: 6px;
}

/* Lista de informações com ícones (telefone, horário, endereço) */
.info-list{
  list-style: none !important;
  padding: 0 !important;
  margin: 12px 0 0;
}
.info-list li{
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 16px; line-height: 1.5;
  color: var(--hac-text);
  border-bottom: 1px solid #ececec;
}
.info-list li:last-child{ border-bottom: none; }
.info-list li svg,
.info-list li i{
  flex: 0 0 20px;
  color: var(--hac-green);
  margin-top: 2px;
  font-size: 18px;
  text-align: center;
}
.info-list li a{ color: var(--hac-green); text-decoration: none; }
.info-list li a:hover{ color: var(--hac-green-dark); text-decoration: underline; }

/* V2: destaques em verde dentro das seções de paciente (strong inline) */
.hac-pacientes-orientacoes .content strong,
.hac-pacientes-acompanhantes .content strong,
.hac-pacientes-retirada .content strong,
.hac-pacientes-central .content strong,
.hac-pacientes-agende .content strong{
  color: var(--hac-green);
}
.hac-pacientes-orientacoes .content a:not(.hac-cta-pill),
.hac-pacientes-acompanhantes .content a:not(.hac-cta-pill),
.hac-pacientes-retirada .content a:not(.hac-cta-pill),
.hac-pacientes-central .content a:not(.hac-cta-pill),
.hac-pacientes-agende .content a:not(.hac-cta-pill){
  color: var(--hac-green);
  text-decoration: none;
}
.hac-pacientes-orientacoes .content a:not(.hac-cta-pill):hover,
.hac-pacientes-acompanhantes .content a:not(.hac-cta-pill):hover,
.hac-pacientes-retirada .content a:not(.hac-cta-pill):hover,
.hac-pacientes-central .content a:not(.hac-cta-pill):hover,
.hac-pacientes-agende .content a:not(.hac-cta-pill):hover{
  color: var(--hac-green-dark);
  text-decoration: underline;
}

/* V2: nota das visita-cards aceita Font Awesome */
.hac-visita-card .nota i{ flex:none; margin-top:2px; color: var(--hac-green); }

/* CTA verde pill nas seções de paciente */
.hac-pacientes-retirada .content .hac-cta-pill,
.hac-pacientes-agende .content .hac-cta-pill{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; font-size: 15px;
  border: 2px solid var(--hac-green); border-radius: 60px;
  color: var(--hac-green); background: #fff; font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.hac-pacientes-retirada .content .hac-cta-pill:hover,
.hac-pacientes-agende .content .hac-cta-pill:hover{
  background: var(--hac-green); color: #fff;
}

/* Dual-CTA row (Agende sua consulta) */
.hac-pacientes-agende .content .cta-row{
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px;
}

@media (max-width: 992px){
  .hac-pacientes-orientacoes,
  .hac-pacientes-acompanhantes,
  .hac-pacientes-retirada,
  .hac-pacientes-central,
  .hac-pacientes-agende{ padding: 40px 24px; }
  .hac-pacientes-orientacoes .row,
  .hac-pacientes-acompanhantes .row,
  .hac-pacientes-retirada .row,
  .hac-pacientes-central .row,
  .hac-pacientes-agende .row{ grid-template-columns: 1fr; gap: 16px; }
}

/* ============= ÁREA DO PACIENTE — header "Horários de Visitas" estático (sem toggle) ============= */
.hac-visitas-head.hac-visitas-head--static{
  cursor: default;
  pointer-events: none;
}
.hac-visitas-head.hac-visitas-head--static .chev{ display: none; }

/* ============= ÍNDICE HORÁRIOS DE VISITAS (paginal landing 2-cards) ============= */
.hac-pacientes-index{
  padding: 80px 24px;
  background: #fff;
}
.hac-pacientes-index .hac-container{
  max-width: 1648px; margin: 0 auto;
}
.hac-pacientes-index__lead{
  text-align: center; max-width: 720px; margin: 0 auto 48px;
  font-size: 18px; line-height: 1.55; color: var(--hac-text);
}
.hac-pacientes-index__cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px; margin: 0 auto;
}
.hac-pacientes-card{
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
}
.hac-pacientes-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(0,0,0,.14);
}
.hac-pacientes-card .photo{
  aspect-ratio: 16 / 10;
  background-size: cover; background-position: center;
}
.hac-pacientes-card .body{
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.hac-pacientes-card .body h3{
  margin: 0;
  font-size: 24px; line-height: 1.25;
  color: var(--hac-green-title);
  font-weight: 700;
}
.hac-pacientes-card .body p{
  margin: 0;
  font-size: 16px; line-height: 1.55;
  color: var(--hac-text);
}
.hac-pacientes-card .cta{
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 8px;
  color: var(--hac-green); font-weight: 700; font-size: 15px;
}
.hac-pacientes-card .cta svg{ transition: transform .2s; }
.hac-pacientes-card:hover .cta svg{ transform: translate(2px, -2px); }

@media (max-width: 768px){
  .hac-pacientes-index{ padding: 48px 16px; }
  .hac-pacientes-index__cards{ grid-template-columns: 1fr; gap: 20px; }
}

/* ============= CONVÊNIOS — Logo grid (Paciente Particular) ============= */
.hac-convenios-section{
  padding: 80px 136px;
  background: #f7f9f7;
}
.hac-convenios-title{
  text-align: center;
  font-size: 32px; line-height: 1.2;
  color: var(--hac-green-title);
  font-weight: 700;
  margin: 0 0 48px;
}
.hac-convenios-grid{
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.hac-convenio-card{
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  display: flex; align-items: center; justify-content: center;
  min-height: 110px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: transform .15s, box-shadow .15s;
}
.hac-convenio-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
}
.hac-convenio-card a{ display: block; line-height: 0; }
.hac-convenio-card img{
  max-width: 100%; max-height: 90px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .15s;
}
.hac-convenio-card:hover img{ filter: grayscale(0%); }
.hac-convenios-empty{
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  font-size: 16px; color: #666;
}
.hac-convenios-empty a{ color: var(--hac-green); }

@media (max-width: 1280px){ .hac-convenios-grid{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 992px){
  .hac-convenios-section{ padding: 48px 24px; }
  .hac-convenios-grid{ grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hac-convenios-title{ font-size: 26px; margin-bottom: 32px; }
}
@media (max-width: 600px){
  .hac-convenios-grid{ grid-template-columns: repeat(2, 1fr); }
  .hac-convenio-card{ min-height: 80px; padding: 14px; }
}

/* ============= FAQ — details/summary collapsible ============= */
.hac-faq-item{
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 12px;
}
.hac-faq-item:last-child{ border-bottom: none; }
.hac-faq-item summary{
  cursor: pointer;
  padding: 16px 28px 16px 0;
  font-weight: 600;
  font-size: 17px;
  color: var(--hac-green-title);
  list-style: none;
  position: relative;
  transition: color .15s;
}
.hac-faq-item summary::-webkit-details-marker{ display: none; }
.hac-faq-item summary::after{
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 700;
  color: var(--hac-green);
  line-height: 1;
  transition: transform .2s;
}
.hac-faq-item[open] summary::after{
  content: "−";
}
.hac-faq-item summary:hover{ color: var(--hac-green); }
.hac-faq-item p{
  margin: 0 0 16px;
  padding-right: 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--hac-text);
}

/* ============= Variant agenda simples (só telefone, sem email) ============= */
.hac-esp-agenda.hac-esp-agenda--simple .contact-list{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hac-esp-agenda.hac-esp-agenda--simple .contact-item{
  text-decoration: none;
  color: var(--hac-green-title);
  font-weight: 600;
}
.hac-esp-agenda.hac-esp-agenda--simple .contact-item:hover{
  color: var(--hac-green);
}

/* ============= SHAC TALK — Hero com stats overlay ============= */
/* SHAC Talk usa o hero PADRÃO (.hac-page-hero); só acrescenta o kicker
   ("Excelência no SUS") como eyebrow acima do H1. */
.hac-shac-hero .kicker{
  display: inline-block;
  color: #fff;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600;
  margin: 0 0 14px;
  opacity: .92;
  text-shadow: 0 2px 12px rgba(0,0,0,.45), 0 1px 3px rgba(0,0,0,.5);
}

/* ============= SHAC TALK — Wordmark (imagem real do evento) ============= */
.hac-shac-wordmark{
  padding: 24px;
  margin-top: -200px;
}
.hac-shac-wordmark-image{
  max-width: 1376px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.hac-shac-wordmark-image img{
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px){
  .hac-shac-wordmark{ padding: 16px; }
}

/* ============= HOME HERO V2 — Swiper full-bleed (100% largura) com setas laterais ============= */
.hac-hero-carousel.hac-hero-v2{
  position: relative;
  padding: 0 !important;
  margin: 0;
  background: transparent;
  overflow: hidden;
}
.hac-hero-carousel.hac-hero-v2 .swiper{
  max-width: none !important;
  padding: 0 !important;
  margin: 0;
  perspective: none;
  overflow: hidden;
}
.hac-hero-carousel.hac-hero-v2 .hac-hero-swiper{
  border-radius: 0;
  overflow: hidden;
  max-width: none;
  width: 100%;
  margin: 0;
  background: transparent;
}
.hac-hero-carousel.hac-hero-v2 .swiper-slide{
  width: 100% !important;
  border-radius: 0 !important;
  aspect-ratio: auto !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 1 !important;
  overflow: hidden;
}
.hac-hero-carousel.hac-hero-v2 .swiper-slide a,
.hac-hero-carousel.hac-hero-v2 .swiper-slide picture,
.hac-hero-carousel.hac-hero-v2 .swiper-slide img{
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}
.hac-hero-carousel.hac-hero-v2 .hac-slides-nav{
  position: absolute;
  top: 50%;
  left: 32px; right: 32px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}
.hac-hero-carousel.hac-hero-v2 .hac-slides-nav .hac-dots{
  display: none;
}
.hac-hero-carousel.hac-hero-v2 .hac-slides-nav .hac-nav-btn{
  pointer-events: auto;
  width: 56px; height: 56px;
  background: rgba(255,255,255,.85);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--hac-green);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: background .15s, transform .15s;
}
.hac-hero-carousel.hac-hero-v2 .hac-slides-nav .hac-nav-btn:hover{
  background: #fff;
  transform: scale(1.06);
}

@media (max-width: 992px){
  .hac-hero-carousel.hac-hero-v2 .hac-slides-nav{ left: 12px; right: 12px; }
  .hac-hero-carousel.hac-hero-v2 .hac-slides-nav .hac-nav-btn{ width: 40px; height: 40px; }
}

/* Home — Faixa verde de busca abaixo do hero */
.hac-home-busca{
  background: var(--hac-green);
  padding: 16px 32px;
}
.hac-home-busca .hac-container{
  max-width: 1648px; margin: 0 auto;
}
.hac-home-busca .hac-search-wrapper{
  display: flex;
  align-items: center;
  background: #fff;
  border: none;
  border-radius: 60px;
  overflow: hidden;
  width: 100%;
  padding: 0 8px 0 24px;
}
.hac-home-busca .hac-search-input{
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 0px;
  border: none;
  background: transparent;
  font: 400 16px/1.4 'Montserrat', sans-serif;
  color: var(--hac-text);
}
.hac-home-busca .hac-search-input::placeholder{
  color: #888;
}
.hac-home-busca .hac-search-input:focus{ outline: none; }
.hac-home-busca-btn{
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  color: var(--hac-green);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background .15s;
}
.hac-home-busca-btn:hover{
  background: #f3f7f3;
}

@media (max-width: 768px){
  .hac-home-busca{ padding: 12px 16px; }
}

/* ============= PÁGINA DO MÉDICO — variant ribbon na base da foto ============= */
.hac-pd-photo.hac-pd-photo--ribbon .nome,
.hac-pd-main .hac-pd-photo .nome{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--hac-green);
  color: #fff;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  letter-spacing: .01em;
}

