/* ESTILOS PARA EL TÍTULO "VISTA" */
.vista {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 34px;
  font-weight: 600px;
  color: white;
  margin-top: 100px;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* CONTENEDOR PRINCIPAL DE LA IMAGEN - VERSIÓN MEJORADA */
.imagen-central {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 60px; /* 60px de margen inferior */
  padding: 0;
  width: fit-content;
  max-width: 90%;
  position: relative;
}

/* ESTILOS DEL ENLACE - VERSIÓN SEGURA */
.imagen-central a.enlace-chat {
  display: inline-block;
  width: auto;
  height: auto;
  text-decoration: none;
  border: none;
  background: transparent;
  border-radius: 24px;
  animation: pulse 3s infinite ease-in-out;
}

/* ESTILOS DE LA IMAGEN - COMPATIBLES CON ANIMACIÓN */
.imagen-central img {
  max-width: 1000px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 
    0 0 15px rgba(103, 101, 135, 0.657),
    0 0 25px rgba(164, 160, 255, 0.5);
}

/* ANIMACIÓN DE PULSO */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* EFECTOS HOVER - MEJORADOS */
.imagen-central a.enlace-chat:hover {
  animation: none;
  transform: scale(1.04);
}

.imagen-central a.enlace-chat:hover img {
  transform: scale(1.02);
  box-shadow: 
    0 0 25px rgba(164, 160, 255, 0.8),
    0 0 35px rgba(164, 160, 255, 0.4);
}