html {
  min-height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-image: linear-gradient(-225deg, #4dd0e1 0%, #1fe313 50%, #0d47a1 100%);
  min-height: 100%;
  padding-bottom: 5rem;
}


.titulo {
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}
.container {
    background-color: white;
    border-radius: 1%;
}

/* Cabecera que contiene el logo */
.cabecera {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px; /* Ajusta la altura según tu diseño */
  position: relative;
  overflow: hidden;
}

/* Estilo para el logo */
.logo {
  width: 80px; /* Tamaño del logo */
  height: 80px;
  border-radius: 50%; /* Forma circular */
  animation: logoAnimation 2s infinite ease-in-out; /* Animación */
}

/* Definición de la animación */
@keyframes logoAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.lista-citas .cita {
  border-bottom: 1px solid #e1e1e1;
  padding: 2rem;
  padding-bottom: 3rem;
  
}
.lista-citas .cita:last-of-type {
  border-bottom: 0;
}

.lista-citas .cita p {
  margin:0;
}
.lista-citas .cita button {
  margin-top: 1rem!important;
}
.lista-citas .cita span {
  font-weight: bold;
}

/* Footer */
.footer {
  background: #040d61;  /* Fallback para navegadores antiguos */
  background: -webkit-linear-gradient(to right, #009225, #4657eb);  
  background: linear-gradient(to right, #004e92, #1d6401);  
  color: white;  /* Texto blanco para contraste */
  text-align: center;
  padding: 2rem;  /* Más espaciado para mayor elegancia */
  position: relative;
  bottom: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
  font-family: 'Arial', sans-serif;  
  border-radius: 20px;
}

/* Efecto al pasar el ratón (hover) */
.footer:hover {
  background: linear-gradient(to right, #004e92, #2c3e50);  /* Cambio de color en hover */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);  /* Sombra más pronunciada */
}

/* Contenido del footer */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

/* Estilo para la marca */
.footer .brand {
  font-size: 1.5rem;  /* Tamaño grande para la marca */
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);  /* Sombra de texto para resaltar */
  letter-spacing: 1px;  /* Espaciado entre letras para dar un toque único */
}

/* Estilo para el número de contacto */
.footer .contact {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  font-style: italic;  /* Cursiva para darle estilo */
}


form .form-group input[type="file"] {
  border: 1px solid #ccc;
  padding: 2px;
  border-radius: 1px;
}
form .form-group button {
  margin-top: 10px;
}
textarea {
    height: 200px!important;
}

svg {
  width: 21px;
}