    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    /* Reset some img behavior and ensure no distortion */
    img, picture, video {
      max-width: 100%;
      height: auto;
      display: inline-block;
      object-fit: contain;
    }

    /* Header specific */
    .site-header {
      background: #0b3b73; /* blue-900 */
      color: #fff;
      position: sticky;
      top: 0;
      z-index: 60;
      box-shadow: 0 2px 8px rgba(2,6,23,0.3);
    }
    .header-inner {
      max-width: 1024px;
      margin: 0 auto;
      padding: 0.6rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }
    .brand {
      display:flex;
      align-items:center;
      gap:0.75rem;
      min-width: 0;
    }
    .brand .logo {
      height: 48px;
      width: auto;
      border-radius: 6px;
      flex-shrink: 0;
    }
    .brand .titlewrap {
      display: block;
      min-width: 0;
    }
    .site-title {
      font-weight: 700;
      font-size: 1rem;
      line-height: 1.05;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .site-subtitle {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.9);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Social icons in header */
    .header-actions {
      display:flex;
      align-items:center;
      gap:0.5rem;
      flex-shrink:0;
    }
    .social-icon {
      height: 36px;
      width: auto;
      display:inline-block;
    }

    /* Nav / hamburger */
    .main-nav {
      display:flex;
      align-items:center;
      gap:1rem;
    }
    .hamburger-btn {
      display:none;
      background: transparent;
      border: none;
      color: #fff;
      font-size: 1.1rem;
      padding: 0.4rem;
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      background: #fff;
      color: #0b3b73;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .mobile-menu a {
      display:block;
      padding:0.75rem 1rem;
      color: #0b3b73;
      text-decoration:none;
    }

    /* Footer */
    footer.site-footer {
      background: #0b3b73;
      color: #fff;
    }
    .footer-inner {
      max-width: 1024px;
      margin: 0 auto;
      padding: 1.25rem 1rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      align-items: start;
    }
    .footer-top {
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 1rem;
      flex-wrap:wrap;
    }
    .footer-socials {
      display:flex;
      gap:0.5rem;
      align-items:center;
    }
    .footer-socials .social-icon {
      height: 32px;
    }
    .footer-nav {
      display:flex;
      gap:1rem;
      flex-wrap:wrap;
    }
    .footer-copyright {
      font-size:0.9rem;
      color: rgba(255,255,255,0.9);
    }

    /* Responsive rules */
    @media (max-width: 768px) {
      .header-inner { padding: 0.5rem 0.9rem; }
      .brand .logo { height:40px; }
      .site-title { font-size: 0.98rem; }
      .site-subtitle { font-size: 0.72rem; }

      /* show hamburger, keep social icons visible */
      .hamburger-btn { display:inline-flex; align-items:center; }
      .main-nav { display:none; }
      .mobile-menu { display:none; } /* toggled by JS */

      /* Header layout: keep one line but allow wrapping gracefully */
      .header-inner { gap:0.5rem; }

      /* Footer: stack */
      .footer-inner {
        grid-template-columns: 1fr;
        text-align:center;
      }
      .footer-top { flex-direction: column; gap: 0.5rem; }
    }

    @media (min-width: 769px) {
      .mobile-menu { display:none; }
      .hamburger-btn { display:none; }
      .main-nav { display:flex; }
      .brand .titlewrap { display:block; }
      .footer-inner { grid-template-columns: 1fr auto; }
    }

    /* Utility small fixes */
    .btn-primary {
      background: #fff;
      color: #0b3b73;
      padding: 0.45rem 0.75rem;
      border-radius: 8px;
      font-weight:600;
      text-decoration:none;
    }
    .contact-fab {
      position: fixed;
      right: 1rem;
      bottom: 1rem;
      display:flex;
      flex-direction:column;
      gap:0.5rem;
      z-index:70;
    }
    .contact-fab a {
      display:inline-flex;
      align-items:center;
      gap:0.5rem;
      padding:0.6rem 0.75rem;
      border-radius:999px;
      color:#fff;
      text-decoration:none;
      font-weight:600;
      box-shadow:0 6px 18px rgba(2,6,23,0.25);
    }
    
    
.botao-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366; /* Cor verde do WhatsApp */
  color: white;
  border-radius: 50%; /* Deixa o botão redondo */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999; /* Garante que o botão fique por cima de tudo */
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.botao-flutuante:hover {
  background-color: #128C7E; /* Tom de verde mais escuro no hover */
  transform: scale(1.1); /* Efeito de aumento ao passar o mouse */
}

.whatsapp-btn {
    /* Usado para alinhar o ícone e o texto */
    display: flex; 
    align-items: center; /* Centraliza verticalmente (meio a meio) */
    justify-content: center; /* Centraliza o conteúdo (ícone + texto) horizontalmente */
}

.whatsapp-icon {
    /* Define o tamanho e o espaçamento da imagem */
    width: 24px;
    height: 24px;
    margin-right: 10px; /* Cria um espaço de 10 pixels à direita do ícone */
}
.convenios {
  padding: 60px 20px;
  text-align: center;
}

.convenios h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.convenios .subtitulo {
  margin-bottom: 40px;
}

.carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* setas */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  font-size: 26px;
  color: #0b3b73;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

/* ESQUERDA e DIREITA */
.carousel-btn.prev {
  left: -10px;
}

.carousel-btn.next {
  right: -10px;
}

.convenios-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 40px 70px;
  align-items: center;
}
.convenios-grid {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE / Edge antigo */
}

.convenios-grid::-webkit-scrollbar {
  display: none;                /* Chrome, Edge, Safari */
}

/* CÍRCULO */
.convenio-card {
  flex: 0 0 140px;        /*  ESSENCIAL */
  width: 140px;
  height: 140px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}



.convenio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* LOGO */
.convenio-card img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}
.convenio-card img {
  max-width: 85px;
  max-height: 85px;
  object-fit: contain;
}
.local-card{
    display:flex;
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
}

.local-mapa{
    width:45%;
}

.local-mapa iframe{
    width:100%;
    height:100%;
    min-height:450px;
    border:none;
}

.local-direita{
    width:55%;
    display:flex;
    flex-direction:column;
}

.local-info{
    padding:30px;
    border-bottom:1px solid #e5e7eb;
}

.local-info h3{
    font-size:2rem;
    font-weight:700;
    color:#0b3b73;
    margin-bottom:15px;
}

.local-info p{
    font-size:1.2rem;
    line-height:1.7;
}

.local-links{
    margin-top:20px;
    display:flex;
    gap:12px;
}

.local-links img{
    height:42px;
}

.local-foto{
    flex:1;
}

.local-foto img{
    width:100%;
    height:100%;
    object-fit:cover;
}

@media (max-width:768px){

    .local-card{
        flex-direction:column;
    }

    .local-mapa,
    .local-direita{
        width:100%;
    }

.local-mapa iframe{
    height:250px;
}

    .local-foto img{
        height:250px;
    }
}
.local-foto{
    position:relative;
    height:300px;
    overflow:hidden;
}

.foto-slide{
    display:none;
    width:100%;
    height:100%;
    object-fit:cover;
}

.foto-slide.active{
    display:block;
}

.foto-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;

    width:40px;
    height:40px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.85);
    cursor:pointer;

    font-size:20px;
}

.foto-btn.foto-prev{
    left:10px;
}

.foto-btn.foto-next{
    right:10px;
}
.accordion-item1{
    background:#0b3b73;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    margin-bottom:16px;
}
.accordion-item2{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    margin-bottom:16px;
}

.accordion-header1{
    width:100%;
    border:none;
    background:none;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 24px;

    font-size:1.3rem;
    font-weight:600;

    cursor:pointer;
}
.accordion-header2{
    width:100%;
    border:none;
    background:none;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 24px;

    font-size:1.3rem;
    font-weight:600;

    cursor:pointer;
}
.accordion-icon1{
    font-size:2rem;
    line-height:1;
    color: #fff;
}
.accordion-icon2{
    font-size:2rem;
    line-height:1;
}
.accordion-content1{
    max-height:0;
    overflow:hidden;
    color: #fff;
    transition:max-height .3s ease;

    padding:0 24px;
}
.accordion-content2{
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;

    padding:0 24px;
}

.accordion-content1 p{
    padding-bottom:24px;
    line-height:1.7;
    color: #fff;
}
.accordion-content2 p{
    padding-bottom:24px;
    line-height:1.7;
}