.huella {
  position: fixed;
  width: 30px;
  height: 30px;
  background-image: url('https://cdn-icons-png.flaticon.com/512/616/616408.png'); /* Puedes cambiar por tu huellita */
  background-size: cover;
  opacity: 0.8;
  animation: desaparecer 1s forwards;
  pointer-events: none;
  z-index: 9999;
}

@keyframes desaparecer {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-50px) scale(0.5);
    opacity: 0;
  }
}

h1 {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h2 {
  color: #069ab4;
  font-size: 2rem;
  margin-bottom: 15px;
}

h5 {
  color: #0b8ea5;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.button_1 {
  background-color: #06899bf1;
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button_1:hover {
  background-color: #3727c5f1;
}
p{color: rgb(12, 167, 167);}

.carrusel {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.texto-slide {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  text-shadow: 1px 1px 4px black;
}
.carousel-inner img {
    width: 100%;
    height: auto;
}
.carousel-item img {
    height: 500px; /* puedes ajustar */
    object-fit: cover; /* recorta sin deformar */
}


.servicio img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.servicio img:hover,
.servicio img:focus {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    outline: none;
}

/* Para dispositivos táctiles, puedes usar :active para dar feedback */
.servicio img:active {
    transform: scale(0.98);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* Estilos del modal */
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 2000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-contenido {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cerrar {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar:hover {
  color: black;
}
