/* NOTICIAS */
.container-noticias {
      margin: 0 auto;
      padding: 4rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 4rem;

      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      width: 100%;
      height: auto;
      background: #fff;
}


    
.box1-noticias {
      display: flex;
      flex-direction: wrap;
      justify-content: center;
      gap: 25px;
}
    
/* Cada bloco ocupa o mesmo espaço */
.box1-ntc,
.box2-ntc,
.box3-ntc {
      flex: 1 1 25%;
      max-width: 420px;
      min-width: 25%;
      min-height: 500px;
      box-sizing: border-box;
      border: 1px solid #e5e5e5;
      border-radius: 1rem;
      padding: 2rem;
      background-color: #f9f9f9;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
      display: flex;
      flex-direction: column;
}
    
.box1-ntc img,
.box2-ntc img,
.box3-ntc img,
.box2-ntc video {
      width: 100%;
      height: auto;
      border-radius: 0.5rem;
      margin-top: 1rem;
      max-width: 100%;
}

.box2-ntc video {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 0.5rem;
      margin-top: 1.rem;
}

.box1-ntc:hover,
.box2-ntc:hover,
.box3-ntc:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}


    
/* Tipografia */
.b1-ntc {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
}
    
.b2-ntc {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
}
    
.b3-ntc,
.b4-ntc {
      color: #555;
      font-size: 1rem;
      margin-bottom: 0.5rem;
}
    
.b5-ntc {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 1rem;
}

.b6-ntc {
      font-size: 1.3rem;
      font-weight: 900;
      margin-bottom: 1rem;
}

.b7-ntc {
      margin-bottom: 1rem;
}

.b8-ntc {
      font-size: 0.6rem;
      cursor: pointer;
      margin-bottom: 60px;
}

.box3-ntc-imgwhats {
      width: 100px;
      height: auto;
}

.box3-ntc-imgwhats img {
      width: 100%;
      height: auto;
}
    
/* Call to action */
.box2-noticias {
      background-color: #111;
      color: #fff;
      padding: 3rem;
      border-radius: 2rem;
      text-align: center;
}
    
.box2-noticias a {
      font-size: 1.5rem;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      transition: opacity 0.3s ease;
}
    
.box2-noticias a:hover {
      opacity: 0.7;
}

/* Responsividade - Notícias */
@media (max-width: 1100px) {
      .box1-noticias {
            display: flex;
            flex-direction: column;
            gap: 2rem;
      }
      
      .box1-ntc,
      .box2-ntc,
      .box3-ntc {
            max-width: 100% !important; /* para que dentro das colunas se estiquem */
            min-width: auto !important;
            flex: none !important;
            margin-bottom: 1.5rem;
            break-inside: avoid; /* para evitar quebra no meio dos blocos */
      }

      .box2-ntc video {
            width: 100% !important;
            height: auto;
      }
}

