/* ==================================================
   O QUE É O PROGRAMA
================================================== */

#about {
    background: linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 100%);
    padding: 120px 0 100px 0;
  }
  
  #about .section-title {
    max-width: 900px;
    margin: 0 auto;
  }
  
  #about h2 {
    font-size: 36px;
    font-weight: 700;
    color: #244CA3;
    margin-bottom: 25px;
  }
  
  .section-divider {
    width: 100px;
    height: 5px;
    background-color: #244CA3;
    margin: 0 auto 35px auto;
    border-radius: 20px;
  }
  
  #about p {
    font-size: 19px;
    line-height: 1.9;
    color: #444;
    text-align: justify;
    text-justify: inter-word;
  }
  
/* ==================================================
   BLOCOS MELHORADOS
================================================== */

.icon-box {
  background: #ffffff;
  padding: 55px 35px;
  border-radius: 18px;
  text-align: center;
  height: 100%;

  border: 2px solid #244CA3;
  box-shadow: 0 15px 35px rgba(36, 76, 163, 0.10);

  transition: all 0.35s ease;
}

.icon-box h4 {
  font-size: 22px;
  font-weight: 600;
  color: #244CA3;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.icon-box p {
  font-size: 16px;
  color: #444;
  transition: color 0.3s ease;
}

/* Hover mais suave e elegante */
.icon-box:hover {
  transform: translateY(-6px); /* antes era -12px, muito exagerado */
  background-color: #244CA3;
  box-shadow: 0 20px 45px rgba(36, 76, 163, 0.25);
}

/* FORÇAR TEXTO BRANCO NO HOVER */
.icon-box:hover h4,
.icon-box:hover p {
  color: #ffffff !important;
}
  
  
  
/* ==================================================
   ESTATÍSTICAS
================================================== */

#stats {
    background-color: #244CA3;
    padding: 80px 0;
    color: #ffffff;
  }
  
  #stats h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
  }
  
  #stats .stats-item {
    text-align: center;
    padding: 20px;
  }
  
  #stats .stats-item span {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff !important; /* FORÇA BRANCO */
    display: block;
    margin-bottom: 12px;
  }
  
  #stats .stats-item p {
    font-size: 18px;
    color: #ffffff !important; /* FORÇA BRANCO */
    font-weight: 500;
  }
  
  
  
  
  /* ==================================================
     ESPAÇAMENTO ENTRE SECÇÕES
  ================================================== */
  
  .section {
    position: relative;
  }
  
  
  /* ==================================================
     RESPONSIVO
  ================================================== */
  
  @media (max-width: 768px) {
  
    #about {
      padding: 80px 20px;
    }
  
    #stats {
      padding: 80px 20px;
    }
  
    #about h2,
    #stats h2 {
      font-size: 26px;
    }
  
    .stats-item span {
      font-size: 42px;
    }
  
  }
  