/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-image: url('images/9603a8ab67fd939122013f8962e429ae6ffe598a.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

/* CONTAINER CENTRAL */
.page-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.main-container {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 8px 14px 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== BANNERS CORRETOS ===== */
.promotions-section .promo-link {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

/* FORÇA PROPORÇÃO IGUAL PARA OS DOIS BANNERS */
.promo-link {
  aspect-ratio: 2. / 1; /* FORMATO PERFEITO */
  height: auto;
  display: block;
  position: relative;
}


/* BLOCO ÚNICO CORRIGIDO — mantém laterais e base perfeitas */
.promo-banner {
  position: absolute;
  inset: 30px 0 0 0 !important; /* ajuste do topo (aqui vc regula o espaço) */
  background-size: contain !important;
  background-position: center 90% !important; /* mantém alinhamento inferior/central */
  background-repeat: no-repeat !important;
  width: 100%;
  height: calc(100% - 25px) !important;
}

/* TEXTO DO BANNER */
.promo-overlay {
  height: 25px;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-overlay-text {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}



/* AJUSTE FINO: descer a imagem um pouco */
.promo-banner {
    background-position: center 95% !important;
}



@media (max-width: 480px) {
  .promo-banner {
    inset: 20px 0 0 0 !important; /* DIMINUI O ESPAÇO NO CELULAR */
  }
}
