.container {
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 8px;
  padding-bottom: 1rem;
}

.slider-4-cols h2 {
  text-align: center;
  margin: 1.5rem 0;
  font-size: 2rem;
  color: #2E368F;
  font-weight:900;
}

.reason {
  min-height: 240px;
  background: #2E368F;
  color: #fff;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  margin: 5px;
  position: relative;
}

/* A imagem do ícone fica sempre no topo central */
.reason-icon {
  max-height:70px;
  position: absolute;
  top: 20px;       /* Distância do topo do container – ajuste conforme necessário */
  left: 50%;
  transform: translateX(-50%);
}
.reason p {
  margin-top: 90px; /* Ajuste esse valor conforme o tamanho da imagem/ícone */
}

/* Se preferir mover o estilo de destaque para uma classe separada */
.highlight {
  font-weight: 900;
}
  
.slider-controls {
  text-align: center;
  margin-top: 1rem;
}
    
.slider-controls button {
  background: #2E368F;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 4px;
  cursor: pointer;
}

.slider-pagination {
  text-align: center;
  margin-top: 1rem;
}
  
.slider-pagination .bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-pagination .bullet.active {
  background: #2E368F;
}

@media only screen and (max-width: 1023px) {
  .reason {
  min-height:250px;
}
  
  @media only screen and (max-width: 400px) {
  .reason {
  min-height:260px;
}
  
}