
.reserva-cita {
  padding: 2rem 1rem;
  background: #14416c;
  color: white;
  font-family: sans-serif;
}

.reserva-titulo {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
}

.reserva-contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.linea-tiempo {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: black;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 1rem 0;
}

.linea-tiempo .punto {
  width: 14px;
  height: 14px;
  background: black;
  border-radius: 2px;
}


.pasos {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 400px;
  margin-left: 2.5rem;
}

.paso {
  display: flex;
  flex-direction: column;
  background: #ffffff0f;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  transition: transform 0.3s;
}

.paso:hover {
  transform: translateY(-4px);
}

.paso img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background-color: #ccc;
  margin-bottom: 0.75rem;
}

.paso h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.1rem;
}

.paso p {
  font-size: 0.95rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .reserva-contenedor {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
  }

  .linea-tiempo {
    display: none;
  }

  .pasos {
    flex-direction: row;
    gap: 2rem;
    margin-left: 0;
    width: 100%;
    max-width: 1100px;
    align-items: stretch;
  }

  .paso {
    flex: 1;
    max-width: 100%;
    min-height: 450px;
    justify-content: space-between;
  }

  .paso img {
    max-height: 300px;
  }
}
.dashboard-contadores {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  max-width: 500px;
  margin: auto;
}

.card-contador {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  color: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.card-contador div:first-child {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.card-contador div:last-child {
  font-size: 3rem;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .dashboard-contadores {
    flex-direction: row;
    justify-content: center;
  }

  .card-contador {
    flex: 1;
    min-width: 200px;
  }
}
.caracteristicas-section {
  max-width: 500px;
  margin: auto;
  margin-bottom: 5px;
  padding: 1rem;
  color: #000;
  font-family: sans-serif;
}

.caracteristicas-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.caracteristicas-titulo {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: left;
}

.caracteristicas-lista {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.caracteristica-item {
  background: #e6e6e6;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.caracteristica-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.caracteristica-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}
