.card-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: center;

  z-index: 9999;
}

.card-banner__inner {
  width: 100%;
  /*max-width: 1440px;*/
  min-height: 64px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 312px;

  background-color: #171717;

  /* glow */
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 96px;

  border: 1px solid #FFFFFF1F;

  box-shadow: 0px 7px 12px rgba(0,0,0,0.15);

  @media (max-width: 768px) {
    padding: 20px;
    background-position-y: 62px;
    gap: 10px;
    min-height: 56px;
  }
}

/* cards */

.card-banner__cards {
  display: flex;
  align-items: center;
  gap: 12px;

  @media (max-width: 768px) {
    gap: 10px;
  }
}

.card-banner__cards-image {
  height: 28px;
  width: auto;
  object-fit: contain;
  border: 1px solid #c9d0d8;
  border-radius: 6px;
  box-sizing: border-box;

  @media (max-width: 768px) {
    height: 24.72px;
  }
}

/* botão */

.card-banner__cta {
    display: flex;
    
}

.card-banner__button {
    display: flex;
    align-items: center;
    align-items: center;
    cursor: pointer;
    background: #ffffff;
    color: #cc092f;
    width: 250px;
    height: 40px;
    max-height: 48px;
    gap: 8;
    angle: 0 deg;
    opacity: 1;
    padding-right: 32px;
    padding-left: 32px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    justify-content: center;

    @media (max-width: 768px) {
      width: 151px;
      padding-right: 16px;
      padding-left: 16px;
      height: 32px;
    }
}

.card-banner__button:hover {
  opacity: .9;
}
