  /* DESCONTO */
  .discount{
    background: var(--accent-color);
    padding: 18px 0;
  }
  
  .discount-percent{
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px 32px;
    gap: 15px;
    max-width: 340px;
    height: 80px;
    border: 1.5px solid #1F1F4D;  
    background-color: #1F1F4D !important;
    border-radius: 200px;
  }
  
  .discount-percent .discount-wrap{
    position: relative;
  
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 100%;
  
    letter-spacing: -0.02em;
    color: white !important;
  }
  
  .discount-percent p{
    position: absolute;
    right: 2.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 100%;
    color: white !important;
  }
  
  .discount-content a{
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 160%;
    margin: 0;
    margin-left: -3rem;
  
    color: white;
    text-decoration: none;
  }
  
  .discount-content a:hover{
    color: white;
    text-decoration: underline;
  }
  
  .discount-content span{
    color: #1F1F4D;
  }

@media (min-width: 1201px) and (max-width: 1550px){
  .container{
    max-width: 1140px !important;
  }
  
  /* DESCONTO 30% */
  .discount-content a{
    font-size: 0.97rem;
    margin-left: 0;
  }
}  
    
@media screen and (max-width: 1201px){
  /* DISCOUNT */
  .discount-content a {
    font-size: 0.8rem;
    margin-left: 0rem;
  }
  
  .discount-percent p {
    right: 1.2rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 993px){
  /* DISCOUNT */
  .discount-percent{
    max-width: 330px;
    margin-bottom: 0.5rem;
  }
  
  .discount-percent .discount-wrap{
    font-size: 3rem;
  }
  
  .discount-percent p{
    right: 2rem;
    font-size: 1.2rem;
  }
}