*,
*::before,
*::after {
  box-sizing: border-box;
}


.promo-sazonal-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    gap: 1rem;
    padding: 0;
}

.promo-link {
    font-weight: 600;
    text-decoration: none;
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: #b71159;
    color: rgb(255, 255, 255);
    box-shadow: 0px 6px 10px rgb(116, 5, 83);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.promo-link:hover,
.promo-link:focus {
    background-color: rgb(248, 240, 231);
    color: #fa358ada;
}

.promo-card {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 1rem auto;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: -8px 8px 20px rgba(0, 0, 0, 0.503);
  border-bottom: 2px solid #bf1b62;
}

.img-wrapper {
  width: 100%;
  overflow: hidden;
}

.promo-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
  object-position: center;
}

.divider {
  height: 2px;
  background: #bf1b62;
}

.promo-text {
  background: linear-gradient(to bottom,#f55fa0,  #fa358a, #b71159);
color: white;
  font-weight: 600;  
  padding: 1.2rem;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  text-shadow: 0 4px 6px rgba(16, 16, 16, 0.40);
}

.tag {
  position: absolute;
  top: 1rem;
  padding: 0.4rem 1rem;
  background: #fa358a;
  color: white;
  font-weight: 600;
  border-radius: 0.4rem;
  font-size: 1rem;
  border-bottom:2px solid #b71159;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  animation: pulse 2s ease-in-out infinite;
}

.tag-left {
  left: -8px;
  top: auto;
}

.tag-right {
  bottom: 8rem;
  right: -8px;
  top: auto;          
}

.promo-sazonal-desktop {
    display: none;
}

@media (min-width: 768px){

    .promo-sazonal-mobile {
        display: none;
    }

    .promo-sazonal-desktop {
        display: flex;
        max-width: 1200px;
        width: 90%;
        margin: 2rem auto;
        gap: 1rem;
        padding: 1rem;
    }

    .promo-text-card {
       min-width: 0;
      align-items: flex-start;
        flex: 6;
        padding: 2rem;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 2rem;
        justify-content: center;
        flex-direction: column;
    }

    .promo-text-desktop {
      font-size: clamp(1rem, 2vw, 1.6rem);
        line-height: 1.6;
        width: 100%;
        font-weight: 600;
    }

    .img-wrapper-destkop {
        flex: 4;
        width: 100%;
        height: auto;
         min-width: 0; 
    }


    .promo-img-desktop {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 9;
    object-position: center;
    border-radius: 0.5rem;
    border: 4px solid #b71159;
    box-shadow: -8px 8px 20px rgba(40, 6, 56, 0.708);
    }

    .promo-title {
      animation: pulse 2s ease-in-out infinite;
    }

    .promo-title,
    .promo-title-2 {
    font-size: 3.2rem;
    color: #b71159;
    text-shadow: 0 4px 6px rgba(16, 16, 16, 0.70);
    } 
    .promo-title-2 {
        transform: translateY(-50%);
    }   
    .promo-link {
      font-size: 1.8rem;
    }  

}

@media (max-width: 948px) {
  .promo-sazonal-desktop {
    width: 80%;
  }

  .img-wrapper-destkop {
    transform: translateY(10%);
  }
}

@media (max-width: 842px) {
  .promo-sazonal-desktop {
    width: 70%;
  }
  .promo-link.desktop {
    transform: translateX(50%);
  }
}



@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.07);
    }
    0% {
        transform: scale(1);
    }
}