/* RESET BÁSICO */
* {
  box-sizing: border-box;
}

/* BODY */
body {
  margin: 0;
  height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  background-color: #e6311f;
  background-image: url("chile.svg");
  background-repeat: no-repeat;
  background-position: bottom 10px right -190px;

  background-size: 1100px;

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



/* CONTENEDOR PRINCIPAL */
.container {
  text-align: center;
  padding: 24px;
}

/* LOGO */
.logo {
  display: block;
  margin: 0 auto 72px auto;
  width: 100%;
  max-width: 420px;

  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s ease-out forwards;
}



/* BOTÓN */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;

  background-color: #f6a01a;
  color: #ffffff;

  text-decoration: none;
  font-size: 16px;
  font-weight: 600;

  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 1.7s ease-out forwards;
  animation-delay: 0.25s;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* HOVER */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .logo {
    max-width: 520px;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
