.compartilhar {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    flex-wrap: wrap;
}

.compartilhar p {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-right: 10px;
}

/* Ícones sociais */
.compartilhar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
    background-color: transparent;
}

/* Ícones com Font Awesome 6 Brands */
.compartilhar a::before {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    display: inline-block;
}

/* Cores reais dos ícones */
.compartilhar .whatsapp::before {
    content: "\f232";
    color: #25D366;
}

.compartilhar .facebook::before {
    content: "\f09a";
    color: #1877F2;
}

.compartilhar .pinterest::before {
    content: "\f231";
    color: #E60023;
}

.compartilhar .telegram::before {
    content: "\f2c6";
    color: #0088CC;
}

/* Hover */
.compartilhar a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


@media (max-width: 768px) {
  .compartilhar {
    flex-direction: row; /* <- agora mantém lado a lado mesmo no mobile */
    flex-wrap: wrap;
    gap: 10px;
  }

  .compartilhar p {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .compartilhar a {
    width: 40px;
    height: 40px;
  }

  .compartilhar a::before {
    font-size: 18px;
  }
}
