.stories-title-div {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 0px;
  text-align: center;
}

.stories-title-div-content {
  font-size: 32px;
 
}

.carousel-container {
  position: relative;
  width: 840px; 
  overflow: hidden;
  margin: 0 auto;
  margin-top: 45px;
  
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  cursor: grab; 
  user-select: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.calendar {
  width: 189px;
  margin: 0 10px; 
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px 2px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  flex-shrink: 0;
  position: relative;
  cursor: pointer; 
  transition: transform 0.3s ease; 
  
  
}
.calendar:hover {
  transform: scale(1.02); 
  box-shadow: 0 6px 16px 2px rgba(0, 0, 0, 0.2); 
}

/* Triângulo simulando página virando */
.calendar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 30px; /* Tamanho do triângulo */
  border-color: transparent transparent #f0f0f0 transparent; /* Cor do triângulo (leve cinza para efeito de dobra) */
  box-shadow: -4px 2px 10px rgba(0, 0, 0, 0.1); /* Sombra suave para dar profundidade */
}

.calendar-header-event {
  background-color: #2b83d3;
  padding: 15px 5px;
  position: relative;
  display: flex;
  justify-content: center;
  height: 30%;
  max-height: 100px;
}


.calendar-body {
  text-align: center;
  padding: 8px;
  
}

.calendar-body .day {
  font-size: 48px;
  color: #2b83d3;
  margin: 0;
  line-height: 1;
}

.calendar-body .month {
  font-size: 20px;
  color: #555;
  margin: 4px 0;
}

.calendar-body .year {
  font-size: 16px;
  color: #999;
}

.calendar-footer {
  display: flex;
  justify-content: space-around;
 
}

.line {
  width: 40%;
  height: 8px;
  background-color: #ddd;
  border-radius: 4px;
}

.arrow {
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #2b83d3;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin: 0 15px;
}

.arrow:hover {
  background-color: #1a5ea0;
  transform: scale(1.1);
  
}

.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.texto{
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.rings {
  display: flex;
  justify-content: space-around;
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
}

.ring {
  width: 20px;
  height: 20px;
  border: 4px solid #fbc02d;
  border-radius: 50%;
  background-color: white;
}

.centralizar {
  width: 100%;
  border-bottom: 1px solid #11305D;
  margin-top: 2em;
  
}
@media (max-width: 990px) {
  
  .carousel-container {
    width: 100%;
    max-width: 285px; 
    margin: 0 auto;
    margin-top: 30px;
    padding: 0 10px; 
  }

  .calendar {
    width: 160px;
    margin: 0 10px; 
  }
}