#sorte {
    background: linear-gradient(to right, var(--bg-left) 50%, var(--bg-right) 50%);
    display: flex;
    align-items: stretch;
}  

#sorte .container-sorte {
    display: flex;
}   

#sorte .sorteio-imagens {
    display: flex;
    background: var(--bg-left);
    padding-top: 20px;
    padding-right: 30px;
}

#sorte .sorteio-banner-desktop {
    width: 100%;
}

#sorte .sorteio-banner-desktop {
    display: block;
}

#sorte .sorteio-banner-mobile {
    display: none;
}


#sorte .sorteio-conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-right);
    padding-left: 2em;
    padding-right: 1em;
}
  
#sorte .titulo-sorte {
    font-family: "Mulish-Bold";
    font-size: 30px;
    color: var(--titulo-box-sorte);
    margin-bottom: 1.5rem;
}
  
#sorte .premio-sorte {
    font-family: "Mulish-Bold";
    font-size: 40px;
    color: var(--premio-box-sorte);
    margin-bottom: 1.5rem;
}
  
#sorte .subtitulo-sorte {
    font-family: "Mulish";
    font-size: 20px;
    color: var(--subtitulo-box-sorte);
    line-height: 1.4;
}
  
  /* Botão */
  #sorte .btn-sorteio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Mulish";
    font-size: 16px;
    color: var(--btn-sorteio-text);
    background-color: var(--btn-sorteio-bg);
    border: 1px solid var(--btn-sorteio-border);
    border-radius: 8px;
    width: 270px;
    max-width: 100%;
    height: 58px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  
#sorte .btn-sorteio:hover {
    background-color: var(--hover-btn);
    color: var(---hover-text-btn);
    border-color: transparent;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
  
#sorte .icon-btn {
    margin-left: 0.5rem;
    filter: var(--btn-icon);
}
  
#sorte .regulamento-sorte {
    font-family: "Mulish";
    font-size: 14px;
    color: var(--regulamento-text);
    margin-top: 0.5rem;
    text-decoration: none;
}

#sorte .consulte-conteudo-sorte {
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
}
  
  @media (max-width: 1080px) {

    #sorte .sorteio-imagens {
        justify-content: center;
        width: 100%;
    }

    #sorte .sorteio-conteudo {
        width: 100%;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    #sorte .container-sorte {
      flex-direction: column;
    }
    #sorte .so-responsive {
        margin-left: auto;
        padding-left: 0;
        padding-right: 0;
    }

    #sorte .sorteio-banner-desktop {
      display: none;
    }
    
    #sorte .sorteio-banner-mobile {
      display: block;
    }
    
    #sorte  .titulo-sorte {
      font-size: 24px;
    }
    
    #sorte .premio-sorte {
      font-size: 30px;
    }
    
    #sorte .subtitulo-sorte {
      font-size: 16px;
    }
  }
  
  @media (min-width: 1131px) {
    #sorte .sorteio-banner-mobile {
      display: none;
    }
  }

  @media (max-width: 768px) {
    #sorte .sorteio-conteudo {
        flex-direction: column;
        padding-left: 0;
    }

    #sorte .sorteio-textos {
        text-align: center;
    }
    #sorte .btn-sorteio {
        margin-top: 1em;
    }
}