@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100..900&display=swap");
html,
body {
  font-family: "Urbanist", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

/* Stlye */
.flash, .box {
  animation: 0.5s flash 0.2s ease-in-out both;
}

.flash--2, .box__thumb {
  animation: 0.5s flash 0.6s ease-in-out both;
}

.flash--3, .box__content {
  animation: 0.5s flash 1s ease-in-out both;
}

@keyframes flash {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #62628A;
  font-weight: 500;
  background-color: #7A73FD; /* fallback para navegadores muy viejos */
  /* Prefijos para compatibilidad legacy (opcional pero útil) */
  background: -webkit-linear-gradient(top, #7A73FD 0%, #2E0C9A 100%); /* Safari 5.1 - 6, Chrome 10-25 */
  background: -o-linear-gradient(top, #7A73FD 0%, #2E0C9A 100%); /* Opera 11.1 - 12 */
  background: -moz-linear-gradient(top, #7A73FD 0%, #2E0C9A 100%); /* Firefox 3.6 - 15 */
  /* Gradiente estándar (arriba -> abajo) */
  background: linear-gradient(to bottom, #7A73FD 0%, #2E0C9A 100%);
  height: 100%;
  overflow: auto;
}

.logo {
  width: 150px;
  height: auto;
}

h1 {
  color: #372D5E;
  font-weight: 800;
}

.box {
  overflow: hidden;
  background: white;
  border-radius: 24px;
  margin: 12px;
  display: flex;
  flex-flow: column-reverse wrap;
}
.box p {
  font-size: 18px;
  line-height: 32px;
  max-width: 600px;
}

.box__header,
.box__footer {
  padding: 24px 0;
}

.box__content {
  padding: 24px;
}

a {
  transition: 0.4s;
}
a:hover {
  opacity: 0.6;
}

.cta {
  display: inline-block;
  margin-top: 16px;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  background: linear-gradient(to bottom, #7C75FF, #2B0997);
  border-radius: 12px;
  font-weight: 700;
}

.cta--b {
  margin-top: 0;
  background: transparent;
  color: #2F0E9B;
}

.box__thumb {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.box__thumb img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* RWD */
@media (min-width: 1024px) {
  .logo {
    width: 190px;
  }
  h1 {
    font-size: 48px;
  }
  .box {
    margin-top: 48px;
    margin-left: 48px;
    margin-bottom: 0;
    margin-right: 0;
    height: calc(100vh - 48px);
    align-items: center;
    flex-flow: row nowrap;
    border-radius: 24px 0 0 0;
  }
  .box p {
    font-size: 20px;
    line-height: 34px;
  }
  .box__content,
  .box__thumb {
    height: 100%;
  }
  .box__content {
    padding: 48px 64px;
    flex: 0 1 90%;
    display: flex;
    justify-content: space-between;
    flex-flow: column nowrap;
  }
  .box__header {
    padding-top: 54px;
  }
  .box__thumb {
    transform: translateX(200px);
    flex: 0 1 auto;
  }
  .cta--a {
    margin-top: 32px;
  }
}

/*# sourceMappingURL=style.css.map */
