html {
  min-height: 100%;
}
body {
  margin: 0;
  padding: 0;
      font-family: 'Poppins', sans-serif;
  background-image: linear-gradient(-225deg, #77bb93 0%, #1a522f 52%, #1f4e2f 100%);
  min-height: 100%;
  padding-bottom: 5rem;
}
.titulo {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;

    background: linear-gradient(90deg, #ffffff 0%, #d6ffe5 50%, #b3ffd0 100%);
    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    letter-spacing: 2px;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .titulo {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .titulo {
        font-size: 1.6rem;
    }
}

.subtitulo {
    text-align: center;
    font-size: 1.1rem;
    color: #eafff2;
    opacity: 0.8;
    margin-top: -1rem;
    letter-spacing: 1px;
}

.container {
    background-color: white;
}
header {
  margin-top: 3rem;
}
header h1 {
  color: white;
}
.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;
}
textarea {
    height: 200px!important;
}

svg {
  width: 21px;
}

.footer {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(3px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer p {
    margin: 0;
}

/* Capa de huellas en la parte superior */
.huellas-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;        
    pointer-events: none;  
    z-index: 0;
}

/* Estilo base de cada huella */
.huellas-fondo .huella {
    position: absolute;
    width: 70px;
    height: 70px;
    fill: rgba(255, 255, 255, 0.35); 
}

/* Distribución por la parte superior */
.huellas-fondo .huella:nth-child(1) {
    top: 40px;
    left: 8%;
    transform: rotate(-18deg);
}

.huellas-fondo .huella:nth-child(2) {
    top: 20px;
    left: 30%;
    transform: rotate(10deg);
}

.huellas-fondo .huella:nth-child(3) {
    top: 55px;
    left: 55%;
    transform: rotate(-8deg);
}

.huellas-fondo .huella:nth-child(4) {
    top: 25px;
    left: 78%;
    transform: rotate(15deg);
}
