.cta-band {
  background: linear-gradient(180deg, #0f3862 0%, #0c2f52 100%);
  text-align: center;
  color: var(--color-white);

  padding: 4rem;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-band h2 {
  margin-bottom: 15px;

  color: var(--color-white);
}

.cta-band p {
  margin-bottom: 30px;

  color: rgba(254, 254, 254, 0.75);
}

.cta-wrapper {
  display: flex;
  justify-content: center;

  width: fit-content;
  margin: auto;
}

.cta-wrapper .wa-icon {
  width: 22px;
  height: 22px;
  filter: invert(1);
}

.cta-btn {
  display: inline-flex;
  padding: 14px 26px;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  text-decoration: none;
  font-weight: 700;
  border-radius: 2px;

  gap: 10px;

  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.cta-btn:hover {
  background-color: var(--color-white);
  color: #0f3862;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cta-band {
    padding: 3rem 1.5rem;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-band h2 {
    margin-bottom: 12px;
  }

  .cta-band p {
    margin-bottom: 24px;
  }

  .cta-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
  }
}
