.hero {
  position: relative;
  min-height: 105vh;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  overflow: hidden; 
}

.hero-text {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1; 
}

#calendar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.day-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #042D62d3;
  color: #ffffff;
  border-radius: 50%;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 15px rgba(213, 213, 213, 0.1); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day-btn:hover {
  background-color: #003853;
  transform: translateY(-5px); 
  box-shadow: 0 12px 20px rgba(240, 240, 240, 0.2);
}

.day-btn:active {
  transform: translateY(0); 
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); 
}

.day-fs{
  font-size: 13px;
}


.gratitude-challenge {
  background-color: #f8f9fa; 
  padding: 40px 20px;
  margin-top: 30px; 
  border-radius: 10px; 
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); 
}

.gratitude-challenge .container {
  max-width: 800px; 
  margin: auto; 
}

.gratitude-challenge h2 {
  color: #6c0e0e; 
  text-align: center; 
  margin-bottom: 20px;
}

.gratitude-challenge .intro {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.gratitude-challenge .challenge-list {
  padding-left: 20px; 
}

.gratitude-challenge li {
  margin-bottom: 15px; 
  font-size: 1rem;
  line-height: 1.5; 
}

.gratitude-challenge .highlight {
  color: #003853; 
  font-weight: bold; /* Mantener el estilo en negrita */
}

.days {
  background-color: #f8f9fa; 
  padding: 40px 20px;
  margin-top: 18px; 
  border-radius: 10px; 
}

.video-container {
  text-align: center; 
  display: flex;
  justify-content: center;
}

.iframe-wrapper {
  position: relative;
  width: 90%; 
  max-width: 1280px; 
  padding-bottom: 56.25%;
  height: 0;
  margin: 15px auto; 
  overflow: hidden;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
}



.carousel-control-prev,
.carousel-control-next {
    width: 6%; 
    z-index: 10; 
    color: black;
}

.carousel-inner {
  padding: 8px; 

}

.carousel-item {
    padding-left: 30px;
    padding-right: 30px; 
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent; 
    width: 45px; 
    height: 30px; 
}

.carousel-control-next-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="black" viewBox="0 0 16 16"%3E%3Cpath fill-rule="evenodd" d="M11.3 12.3a1 1 0 0 1 0-1.4L13.6 8H1a1 1 0 1 1 0-2h12.6l-2.3-2.9a1 1 0 1 1 1.5-1.3l4 5a1 1 0 0 1 0 1.3l-4 5a1 1 0 0 1-1.5-1.3z"/%3E%3C/svg%3E');
}

.carousel-control-prev-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="black" viewBox="0 0 16 16"%3E%3Cpath fill-rule="evenodd" d="M4.7 12.3a1 1 0 0 0 0-1.4L2.4 8h12.6a1 1 0 1 0 0-2H2.4l2.3-2.9a1 1 0 1 0-1.5-1.3l-4 5a1 1 0 0 0 0 1.3l4 5a1 1 0 0 0 1.5-1.3z"/%3E%3C/svg%3E');
}


.day-btn {
    padding: 10px;
}

@media (max-width: 768px) {
  .hero-bg {
    object-fit: cover;
    
  }
}

@media (max-width: 768px) {
  

  .day-btn {
      width: 35px;
      height: 35px;
      font-size: 9px;
  }
}