<!-- TARJETA DE DESRATIZACIÓN -->
<style>
.tarjeta-hover {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin: 20px auto;
  transition: transform 0.3s ease;
}
.tarjeta-hover img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.tarjeta-hover:hover img {
  transform: scale(1.05);
}
.texto-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tarjeta-hover:hover .texto-hover {
  opacity: 1;
}
.texto-hover h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.texto-hover p {
  font-size: 14px;
}
</style>

<div class="tarjeta-hover">
  <img src="https://cdn.pixabay.com/photo/2020/03/23/21/53/rat-4961690_1280.jpg" alt="Servicio de desratización">
  <div class="texto-hover">
    <h3>Servicio de Desratización</h3>
    <p>Control profesional de roedores en ambientes urbanos e industriales. Uso de estaciones cebaderas seguras y estrategias de manejo responsable.</p>
  </div>
</div>