* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  min-height: 100svh;

  background-color: #1c1c1c;
  background-image: url("./assets/Desktop.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  color: #f5f3eb;
  font-family: Arial, Helvetica, sans-serif;
}

.landing {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding: 32px;
}

.contacto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  padding: 12px 18px;

  background: rgba(15, 15, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.estado {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.enlaces {
  display: flex;
  align-items: center;
  gap: 18px;
}

.enlaces a {
  color: inherit;
  font-size: 13px;
  text-decoration: none;
  opacity: 0.72;

  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.enlaces a:hover,
.enlaces a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  body {
    background-image: url("./assets/Movil.jpg");
    background-position: center;
  }

  .landing {
    padding: 18px;
  }

  .contacto {
    width: 100%;
    max-width: 420px;

    flex-direction: column;
    gap: 11px;

    padding: 15px 18px;
    border-radius: 18px;
  }

  .estado {
    font-size: 10px;
    text-align: center;
  }

  .enlaces {
    width: 100%;
    justify-content: center;
    gap: 22px;
  }

  .enlaces a {
    font-size: 12px;
  }
}
