body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

.page {
  padding: 20px;
}

.logo {
  width: 180px;
  margin-bottom: 10px;
}

.hero-preview {
  width: 1px; /* casi invisible */
  height: 1px;
  opacity: 0;
  position: absolute;
}

.description {
  max-width: 600px;
  margin: 20px auto;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}

.contact {
  margin: 20px 0;
}

.link-icon {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.icon {
  width: 18px;
}

.email-link {
  color: white;
  text-decoration: none;
}

.social {
  margin: 20px 0;
}

.social-link {
  margin: 0 5px;
}

.social-svg {
  width: 30px;
  filter: brightness(0) invert(1);
}

.btn-distribuidor,
.btn-volver {
  background-color: white;
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
}

.btn-distribuidor:hover,
.btn-volver:hover {
  background-color: gold;
  color: black;
}

/* --- FORMULARIO --- */
.form-container {
  max-width: 600px;
  margin: 50px auto;
  background: black;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  text-align: left;
}

form label {
  font-weight: bold;
  margin: 10px 0 5px;
}

form input,
form select,
form textarea {
  width: 90%; /* ✅ más pequeño para móviles */
  padding: 8px;
  margin: 0 auto 15px auto;
  border-radius: 5px;
  border: none;
  display: block;
}

form textarea {
  resize: vertical;
  min-height: 70px;
}

form button {
  background: white;
  color: black;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #c5a74e;
  color: white;
}
