body {
  font-family: "Ubuntu", sans-serif;
  background-color: rgb(238, 238, 238) !important;
  margin: 0;
  padding: 0;
  padding-top: 75px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Add these new styles for the footer layout */
html {
  height: 100%;
}

.container {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

.card-up {
  width: 100%; /* Ocupar todo el espacio disponible */
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.card-up:hover {
  transform: translateY(-10px);
  background-color: rgba(10, 128, 128, 0.212);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.section-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 85%;
  border-radius: 10px;
  margin: auto;
  margin-top: 15px;
}

.circular-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
  padding: 10px;
  text-align: center;
  max-width: 200px;
}

.circular-container {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background-color: #4babcd;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.circular-container:hover {
  border: 3px solid #354393;
  color: #377e98;
}

.text-info-container {
  border-radius: 10px;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
  border-top: 3px solid #5acdf7;
  padding: 10px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 20px;
  background-color: white;
  width: 100%;
  position: relative;
}

.text-info-container::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #5acdf7;
  filter: blur(8px); /* Difumina */
  opacity: 0.9;
  z-index: -1;
}

.proximamente {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background-color: white;
  margin-top: 30px;
  color: #354393;
}

.noticias {
  width: 80%;
  margin: auto;
}

.titulo-circular {
  display: inline-block;
  text-align: center;
  color: inherit;
}

.card:hover .card-title-css {
  color: #0056b3;
}

.card:hover .card-body-css {
  background-color: #eaf3fc;
}

.card:hover img {
  opacity: 0.8;
}

.modal-body p {
  color: grey;
  border-left: #4babcd solid 3px;
  padding-left: 6px;
}
