    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", Arial, sans-serif;
    }

    body {
      background-color: #fff;
      color: #111;
      scroll-behavior: smooth;
    }

    /* ===== MENU ===== */
    .navbar {
      height: 125px;
      background-color: #f5f5f5;
      border-bottom: 4px solid #ffcc00;
    }

    .navbar-brand img {
      height: 120px;
      transition: transform 0.3s ease;
    }

    .navbar-brand img:hover {
      transform: scale(1.05);
    }

    .navbar-nav .nav-link {
      color: #000 !important;
      font-size: 22px;
      font-weight: 600;
      text-transform: uppercase;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
      color: #ffcc00 !important;
    }

    .navbar-toggler {
      border: none;
      background: none;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    @media (max-width: 991px) {
      .navbar {
        height: auto;
        padding: 15px 0;
      }

      .navbar-brand img {
        height: 90px;
      }

      .navbar-nav {
        background-color: #f5f5f5;
        border-top: 3px solid #ffcc00;
        border-bottom: 3px solid #ffcc00;
        padding: 20px 0;
        width: 100%;
      }

      .navbar-nav .nav-item {
        margin: 10px 0;
      }

      .navbar-nav .nav-link {
        font-size: 20px;
      }
    }

    /* ===== CONTEÚDO ===== */
    .container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 15px;
    }

    /* === DESTAQUES === */
    .news-box {
      display: flex;
      flex-direction: row;
      align-items: center;
      border-radius: 12px;
      overflow: hidden;
      background-color: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-height: 220px;
    }

    .news-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    }

    .news-img {
      width: 50%;
      height: 100%;
      max-height: 250px;
      object-fit: cover;
      border-right: 3px solid #ffcc00;
    }

    .news-body {
      padding: 20px;
      width: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .news-body p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      text-align: justify;
      margin: 0;
    }

    @media (max-width: 768px) {
      .news-box {
        flex-direction: column;
        text-align: center;
      }

      .news-img {
        width: 100%;
        border-right: none;
        border-bottom: 3px solid #ffcc00;
      }

      .news-body {
        width: 100%;
        padding: 15px;
      }
    }

    /* === MINI BOXES === */
    .mini-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
    }

    .mini-box {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      width: 48%;
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 16px;
      transition: transform 0.3s ease;
    }

    .mini-box:hover {
      transform: translateY(-4px);
    }

    .mini-box img {
      width: 45%;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
      border: 2px solid #ffcc00;
    }

    .mini-box p {
      flex: 1;
      font-size: 15px;
      color: #333;
      text-align: justify;
      margin: 0;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .mini-box {
        width: 100%;
        flex-direction: column;
        text-align: center;
      }

      .mini-box img {
        width: 100%;
        height: 200px;
      }

      .mini-box p {
        font-size: 14px;
      }
    }

    /* === ÚLTIMAS NOTÍCIAS === */
    .ultimas-noticias {
      background-color: #fff;
      border-left: 6px solid #ffcc00;
      padding: 35px;
      border-radius: 14px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.1);
      min-height: 550px;
    }

    .ultimas-noticias h5 {
      color: #ffcc00;
      font-weight: 800;
      font-size: 22px;
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .ultimas-noticias .noticia {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .ultimas-noticias .noticia img {
      width: 150px;
      height: 210px;
      object-fit: cover;
      border-radius: 10px;
      border: 3px solid #ffcc00;
      box-shadow: 0 3px 8px rgba(0,0,0,0.15);
      transition: transform 0.3s ease;
    }

    .ultimas-noticias .noticia img:hover {
      transform: scale(1.05);
    }

    .ultimas-noticias p {
      font-size: 15px;
      line-height: 1.6;
      color: #333;
      text-align: justify;
    }

    @media (max-width: 768px) {
      .ultimas-noticias {
        border-left: none;
        border-top: 6px solid #ffcc00;
        padding: 25px;
      }

      .ultimas-noticias .noticia {
        flex-direction: column;
        text-align: center;
      }

      .ultimas-noticias .noticia img {
        width: 100%;
        height: 220px;
      }
    }

    /* ===== RODAPÉ ===== */
    footer {
      background-color: #f5f5f5;
      border-top: 4px solid #ffcc00;
      margin-top: 60px;
      padding: 40px 0;
      text-align: center;
    }

    footer img {
      height: 60px;
      margin-bottom: 8px;
    }

    footer h3 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    footer h3 span {
      color: #ffcc00;
    }

    footer p {
      font-size: 14px;
      margin-bottom: 10px;
    }

    footer .rodape-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
    }

    footer .rodape-links a {
      color: #000;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s;
    }

    footer .rodape-links a:hover {
      color: #ffcc00;
    }

    @media (max-width: 576px) {
      footer h3 {
        font-size: 18px;
      }

      footer .rodape-links {
        flex-direction: column;
        gap: 10px;
      }
    }


.banner-blog {
    width: 100%;
    height: 420px; /* ajuste se quiser maior/menor */
    background: url('blog') no-repeat center center;
    background-size: cover;
    position: relative;
    margin-top: 20px; /* distância do menu */
}

/* BOTÃO */
.banner-blog {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-blog img {
    width: 100%;
    height: 580px;
    display: block;
}

/* BOTÃO SOBRE O BANNER */
.btn-banner {
    position: absolute;
    left: 75%;        /* mais para direita */
    top: 90%;         /* mais para baixo */
    transform: translate(-50%, -50%);
    background-color: #ff9900;
    color: white;
    padding: 14px 32px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-banner:hover {
    background-color: #cc7a00;
}

/* RESPONSIVO */
@media (max-width: 568px) {
    .btn-banner {
        left: 70%;           /* ajusta posição no mobile */
        top: 75%;
        padding: 10px 22px;  /* botão menor */
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btn-banner {
        left: 65%;
        top: 78%;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}



   .hero {
  position: relative;
}

.hero-text {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* Conteúdo */
main h2 {
  font-size: 1.6rem;
}

main p {
  font-size: 0.95rem;
}

/* Imagens */
.img-fluid {
  transition: transform 0.3s;
}

.img-fluid:hover {
  transform: scale(1.03);
}

.noticias {
  background: #fff;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
}

.card-body {
  padding: 1rem;
}

.small-card img {
  height: 100%;
  object-fit: cover;
}

.small-card .card-body {
  padding: 0.75rem;
}

.small-card .card-text {
  font-size: 0.85rem;
  color: #333;
}

.ultimas-noticias {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.noticia-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 250px;
  max-width: 280px;
}

.noticia-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.noticia-card img {
  border-radius: 12px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.noticia-card h6 {
  margin-top: 12px;
  color: #222;
  font-size: 1rem;
}

.noticia-card p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}


  /* ======= BANNER ======= */
    .banner img {
      max-height: 420px;
      object-fit: cover;
    }


    /* ======= CARDS INTERATIVOS ======= */
    .news-card img {
      transition: transform .3s;
      border-radius: 8px;
    }

    .news-card:hover img {
      transform: scale(1.05);
    }

    .news-card h6 {
      transition: color .3s;
    }

    .news-card:hover h6 {
      color: #ffcc00;
    }


    /* ======= RESPONSIVIDADE ESPECIAL ======= */

    /* No celular: cards viram CARROSSEL */
    @media (max-width: 768px) {
      .cards-container {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
      }

      .cards-container .col-md-3 {
        flex: 0 0 75%;
        scroll-snap-align: center;
      }

      h2 {
        text-align: center;
      }

      p.text-secondary {
        text-align: center;
      }
    }

    /* Esconder scroll bar */
    .cards-container::-webkit-scrollbar {
      display: none;
    }