/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Raleway', Arial, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/* Logo */
.encabezado-logo-home {
  margin: 20px auto;
  text-align: center;
}

.encabezado-logo-home img {
  max-width: 180px;
  height: auto;
}

/* Título */
.titulo-home {
  font-size: 28px;
  font-weight: 700;
  color: #08539A;
  text-align: center;
  margin-bottom: 20px;
}

/* Texto central */
p {
  line-height: 1.4;
}

/* QR */
img[alt="Chat QR"] {
  width: 220px;
  height: 220px;
  border-radius: 10px;
  padding: 5px;
  transition: transform 0.3s ease;
}

img[alt="Chat QR"]:hover {
  transform: scale(1.05);
}

.descripcion-soporte {
  max-width: 700px;
  margin: 20px auto;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.descripcion-soporte ul {
  margin-top: 10px;
  padding-left: 20px;
}

.descripcion-soporte li {
  margin-bottom: 6px;
  list-style: "✅ ";
}