
/* === Estilos generales === */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #1f1f1f;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.welcome {
  max-width: 480px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.welcome__logo {
  width: 160px;
  height: auto;
  margin-bottom: 24px;
}

.welcome__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  text-transform: uppercase;
  margin-top:0px;
}

.welcome__text {
  font-size: 16px;
  margin-bottom: 16px;
}

.welcome__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
}

.welcome__button {
  display: block;
  padding: 14px;
  border-radius: 30px;
  background-color: #ff5a1f;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.welcome__button:hover {
  background-color: #e14c12;
}

.welcome__divider {
  width: 60%;
  margin: 16px auto;
  border: 1px solid #666;
}

.welcome__subtitle {
  font-size: 16px;
  margin-bottom: 12px;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__list a {
  color: white;
  text-decoration: underline;
  font-weight: 500;
}

/* === Tablet === */
@media (min-width: 768px) {
  .welcome {
    max-width: 640px;
    padding: 40px;
    padding-top: 10px;
  }

  .welcome__title {
    font-size: 28px;
  }

  .welcome__text,
  .welcome__subtitle {
    font-size: 18px;
  }
}

/* === Escritorio === */
@media (min-width: 1024px) {
  .welcome {
    max-width: 720px;
  }

  .welcome__title {
    font-size: 32px;
  }

  .welcome__button {
    font-size: 18px;
  }
}

.welcome__button svg {
  vertical-align: middle;
}
ul{
  margin-top:20px !important;
}

ul li{
  text-align: left;
}