.cta-banner {
  width: 90%;
  background: linear-gradient(90deg, #fd5701 0%, #fd9101 100%);
  border-radius: var(--radius-md);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.cta-banner__heading {
  font-size: 50px;
  font-weight: 800;
  color: var(--color-surface);
  line-height: 1.2;
  margin: 0 0 14px;
}

.cta-banner__description {
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 380px;
  margin: 5% 0 9%;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cta-banner__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  font-family: inherit;
  text-decoration: none;
}

.cta-banner__button:hover {
  transform: translateY(-2px);
}

.cta-banner__button:focus-visible {
  outline: 2px solid var(--color-brand-secondary);
  outline-offset: 3px;
}

.cta-banner__button--primary {
  background: #ffffff;
  color: #e8610a;
  box-shadow: 0 2px 10px rgba(240, 130, 20, 0.25);
}

.cta-banner__button--primary:hover {
  box-shadow: 0 8px 24px rgba(232, 97, 10, 0.35);
  opacity: 0.85;
}

.cta-banner__button--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #fff;
  box-shadow: none;
}

.cta-banner__button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

/* SVG dentro dos botões - Desktop */
.cta-banner__button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .cta-banner {
    display: block;
  }

  .cta-banner__description{
    max-width: 100%;
    font-size: 1.2rem;
  }
}

@media (max-width: 900px) {
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
  }

  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner__button {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  /* SVG em Tablets (900px) */
  .cta-banner__button svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  /* SVG em Smartphones (480px) */
  .cta-banner__button svg {
    width: 12px;
    height: 12px;
  }
}
