.titulo {
    font-weight: bold;
    text-align: center;
}

/* Carrossel */
.swiper-container {
    width: 100%; 
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
  }

/* Botões de navegação */
.nav-button-prev, .nav-button-next {
position: absolute; 
top: 50%; 
transform: translateY(-50%);
border-radius: 50%;
background: #27679b;
color: #fff;
width: 40px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); 
transition: all 0.3s ease;
z-index: 2;
font-size: 20px;
cursor: pointer;
opacity: .5;
}

.nav-button-prev:hover, .nav-button-next:hover {
opacity: 1;
}

.nav-button-prev {
left: 10px;
}

.nav-button-next {
right: 10px;
}

.nav-button-prev.hidden, .nav-button-next.hidden {
display: none;
}

/* Estilos do card */
.card {
    flex: 1 0 calc(33.33%);
    min-width: 240px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: height 0.3s ease;
    border-radius: 10px;
    background-color: white;
}

.card-title {
    font-size: 18px;
    color: #0E426C;
    font-weight: bold;
    text-align: center;
    padding: 5px;
}

.card-text {
    font-size: 16px;
    margin-bottom: 0px;
    margin-top: auto;
    padding: 5px;
}

.cardLink {
    text-align: center;
    justify-content: center;
    padding: 5px;
}

/* Ajustes para telas pequenas */
@media screen and (max-width: 540px) {
.swiper-slide {
    flex: 1 0 calc(50% - 1.9px);
}

.card {
    flex: 1 0 calc(50%);
}
}

/* Ajuste para telas muito pequenas (ex: celulares pequenos) */
@media screen and (max-width: 480px) {
.swiper-slide {
    flex: 1 0 calc(100%);
}

.card {
    flex: 1 0 calc(100%);
}
}