/*
|--------------------------------------------------------------------------
| COMPARTILHAMENTO
|--------------------------------------------------------------------------
*/

.stbg-publicacao-compartilhar {
  max-width: 900px;

  margin: 80px auto;

  padding: 35px;

  background: #fff;

  border-radius: 14px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stbg-publicacao-compartilhar-header {
  text-align: center;

  margin-bottom: 30px;
}

.stbg-publicacao-compartilhar-header h2 {
  margin: 0;

  color: #7b1113;

  font-size: 2rem;
}

.stbg-publicacao-compartilhar-botoes {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 15px;
}

.stbg-publicacao-compartilhar-botoes a,
.stbg-publicacao-compartilhar-botoes button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 170px;

  height: 50px;

  padding: 0 20px;

  border-radius: 8px;

  font-weight: 600;

  text-decoration: none;

  cursor: pointer;

  transition: 0.25s;
}

.stbg-publicacao-compartilhar-botoes a:hover,
.stbg-publicacao-compartilhar-botoes button:hover {
  color: #fff;
}

.stbg-share-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.stbg-share-facebook {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.stbg-share-x {
  background: #000;
  border-color: #000;
  color: #fff;
}

.stbg-share-linkedin {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
}

.stbg-share-copy {
  background: #7b1113;
  border-color: #7b1113;
  color: #fff;
}

.stbg-publicacao-compartilhar-botoes a:hover,
.stbg-publicacao-compartilhar-botoes button:hover {
  opacity: 0.9;

  transform: translateY(-2px);
}
.stbg-link-copiado {
  display: none;

  margin-top: 20px;

  text-align: center;

  color: #2e7d32;

  font-weight: 600;
}

.stbg-link-copiado.ativo {
  display: block;
}

@media (max-width: 992px) {
  .stbg-publicacao-compartilhar-botoes .stbg-share-whatsapp {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #fff !important;
  }

  .stbg-publicacao-compartilhar-botoes .stbg-share-facebook {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
    color: #fff !important;
  }

  .stbg-publicacao-compartilhar-botoes .stbg-share-x {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
  }

  .stbg-publicacao-compartilhar-botoes .stbg-share-linkedin {
    background: #0a66c2 !important;
    border-color: #0a66c2 !important;
    color: #fff !important;
  }

  .stbg-publicacao-compartilhar-botoes .stbg-share-copy {
    background: #7b1113 !important;
    border-color: #7b1113 !important;
    color: #fff !important;
  }
}
