/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Fondo con imagen */
html, body {
  width: 100%;
  min-height: 100vh;
  background-image: url("images/fondo.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Centrado general */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

/* Contenedor vertical */
.page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo arriba */
.logo {
  display: block;
  max-width: 380px;
  margin-bottom: 120px;
}

/* Cuadro gris */
.box {
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 520px;
  width: 100%;
}

/* Textos */
h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Tarjeta blanca */
.card {
  background: white;
  color: #333;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.domain {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Botón */
.button {
  display: inline-block;
  background: #ff9800;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.button:hover {
  background: #f57c00;
}

/* Lista */
.features {
  list-style: none;
}

.features li {
  margin: 8px 0;
  font-size: 0.95rem;
}