/* banner.css */

/* Para evitar qualquer recuo lateral no mobile,
   confira no seu styles.css que exista:
   html, body { overflow-x: hidden; } */

   .promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-bottom: 8px;            /* espaçamento até o menu */
    background: linear-gradient(
      to right,
      #7B4079 0%,
      #540ECE 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;             /* 8px em cima/baixo, 16px nas laterais */
    text-align: center;
    z-index: 999;
}

/* Texto principal */
.promo-banner .promo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;  /* semibold */
    color: #FFFFFF;
    line-height: 1.2;
}

/* Texto secundário maior */
.promo-banner .promo-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;  /* bold */
    color: #FCC778;
    line-height: 1.1;
    margin-top: 4px;
}

/* Responsividade */
@media (max-width: 768px) {
    .promo-banner .promo-text {
        font-size: 16px;
    }
    .promo-banner .promo-subtext {
        font-size: 24px;
    }
}

  