.home-cadastro-cta,
.home-cadastro-cta * {
  box-sizing: border-box;
}

.home-cadastro-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  min-height: 88px;
  margin: 3px 0 11px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid #c67b10;
  border-radius: 6px;
  background:
    linear-gradient(105deg, rgba(255, 148, 0, .2), transparent 38%),
    linear-gradient(180deg, #23170a, #090909);
  color: #eee;
  box-shadow: inset 0 0 18px rgba(255, 166, 0, .12), 0 5px 14px rgba(0, 0, 0, .52);
  font-family: Verdana, Arial, sans-serif;
}

.home-cadastro-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 221, 93, .12) 47%, transparent 68%);
  content: "";
  transform: translateX(-100%);
  animation: home-cadastro-brilho 4.2s ease-in-out infinite;
}

.home-cadastro-cta__esfera {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 58, .24), transparent 68%);
  filter: drop-shadow(0 0 7px rgba(255, 183, 0, .85));
}

.home-cadastro-cta__esfera img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.home-cadastro-cta__conteudo {
  min-width: 0;
  text-align: left;
}

.home-cadastro-cta__chamada {
  display: block;
  margin-bottom: 2px;
  color: #ffb300;
  font-size: 9px;
  font-weight: bold;
  letter-spacing: .14em;
}

.home-cadastro-cta h1 {
  margin: 0;
  color: #fff3b0;
  font-size: 14px;
  line-height: 1.25;
  text-shadow: 1px 1px 1px #000, 0 0 8px rgba(255, 164, 0, .45);
}

.home-cadastro-cta p {
  margin: 4px 0 0;
  color: #cfc7b6;
  font-size: 9px;
  line-height: 1.35;
}

.home-cadastro-cta__botao {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 7px 8px;
  border: 1px solid #ffd54f;
  border-radius: 5px;
  background: linear-gradient(180deg, #ffb300, #d56300);
  color: #190b00;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px rgba(255, 255, 255, .28);
  box-shadow: 0 0 0 0 rgba(255, 179, 0, .55), inset 0 1px rgba(255, 255, 255, .35);
  animation: home-cadastro-pulso 2.2s ease-out infinite;
}

.home-cadastro-cta__botao small {
  margin-top: 3px;
  font-size: 8px;
  font-weight: normal;
}

.home-cadastro-cta__botao:hover,
.home-cadastro-cta__botao:focus-visible {
  border-color: #fff2a1;
  background: linear-gradient(180deg, #ffd54f, #f58200);
  color: #000;
  outline: 2px solid rgba(255, 235, 123, .55);
  outline-offset: 2px;
  transform: translateY(-1px);
}

.menu-cadastro-destaque {
  border: 1px solid #c67b10;
  box-shadow: inset 0 0 12px rgba(255, 179, 0, .15), 0 0 8px rgba(255, 145, 0, .4);
}

.menu-cadastro-destaque #icone-nome span {
  color: #ffd54f;
}

@keyframes home-cadastro-pulso {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 179, 0, .48), inset 0 1px rgba(255, 255, 255, .35);
  }

  55% {
    box-shadow: 0 0 0 6px rgba(255, 179, 0, 0), inset 0 1px rgba(255, 255, 255, .35);
  }
}

@keyframes home-cadastro-brilho {
  0%, 62%, 100% {
    transform: translateX(-100%);
  }

  82% {
    transform: translateX(100%);
  }
}

@media screen and (max-width: 560px) {
  .home-cadastro-cta {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px;
    padding: 9px;
  }

  .home-cadastro-cta__esfera {
    width: 42px;
    height: 42px;
  }

  .home-cadastro-cta__esfera img {
    width: 40px;
    height: 40px;
  }

  .home-cadastro-cta h1 {
    font-size: 12px;
  }

  .home-cadastro-cta__botao {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 43px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cadastro-cta::before,
  .home-cadastro-cta__botao {
    animation: none;
  }
}
