* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: #061639;
  color: white;
  font-size: 1.6rem;
  position: relative;
}

/* CONTENEDOR */
.container {
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* LOGO */
.logo-wrapper {
  margin-bottom: 5rem;
  width: 30rem;
  max-width: 80%;
}

.logo {
  width: 100%;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 5rem;
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card img {
  width: 8rem;
  height: 8rem;
  opacity: 0.85;
}

.card p {
  font-size: 1.8rem;
  padding-inline: 4rem;
  font-weight: 600;
}

/* BOTÓN */
.cta {
  padding: 1.4rem 3.5rem;
  border: none;
  border-radius: 3rem;
  background: linear-gradient(90deg, #304f90 0%, #4b76cf 100%);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.cta:hover {
  opacity: 0.7;
}

/* SPARKS */
.spark-one,
.spark-two {
  position: absolute;
  top: 0;
  z-index: -1;
}

.spark-one {
  left: 0;
  width: 60rem;
}

.spark-two {
  right: 0;
  width: 40rem;
}

/* 📱 MOBILE */
@media (max-width: 33.75em) {
  html {
    font-size: 56%;
  }

  .logo-wrapper {
    width: 22rem;
  }

  .card img {
    width: 6rem;
    height: 6rem;
  }

  .card p {
    padding-inline: 2rem;
    font-size: 1.6rem;
  }

  /* Sparks corregidos */
  .spark-one {
    width: 30rem;
    left: -5rem;
    opacity: 0.4;
  }

  .spark-two {
    width: 25rem;
    right: -5rem;
    opacity: 0.4;
  }
}
