/* Oculta a versão desktop em telas menores */
@media only screen and (max-width: 968px) { /* Ajuste o breakpoint conforme sua necessidade */
    #desktop-version {
        display: none !important;
    }
}

@media screen and (max-width: 968px) {
    
  .botoes-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px;
    background-color: #fff;
  }

  .botao-mobile {
    display: block;
    width: 90%;
    max-width: 300px;
    background-color: #8B0000;
    color: white !important;
    text-align: center;
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
  }

  .botao-mobile:hover {
    background-color: #a80000;
  }
}

/* Oculta no desktop */
@media screen and (min-width: 969px) {
  .botoes-mobile {
    display: none;
  }
}