/* prueba-fondo: pegar esto exactamente en style.css */
html, body {
  height: 100%;
  margin: 0;
}
body {
  background-image: url('../assets/fnd.jpeg') !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  background-attachment: fixed !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 10px;
}

h2 {
  color: #0d6efd;
}

#btnSoporte {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
}

#hotspot {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;   /* Área donde aparece */
    height: 60px;
    z-index: 5;
}

/* Solo aparece cuando entras al hotspot */
#hotspot:hover + #btnSoporte,
#btnSoporte:hover {
    opacity: 1;
}
