
/* ==========================================================
   GHOSTBASE HISTÓRIA — SOCIAL CTA PREMIUM V1
   ========================================================== */
.gb-history .gbh-social-actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-top:14px;
}
.gb-history .gbh-social-btn{
    display:inline-flex;
    align-items:center;
    gap:9px;
    min-height:44px;
    padding:0 15px;
    border:1px solid #314751;
    border-radius:10px;
    color:#eef4f6;
    text-decoration:none;
    font-size:11px;
    font-weight:900;
    transition:.18s ease;
    background:#091418;
}
.gb-history .gbh-social-btn i{
    display:grid;
    place-items:center;
    width:27px;
    height:27px;
    border-radius:8px;
    font-style:normal;
    font-size:10px;
    font-weight:950;
}
.gb-history .gbh-social-btn.instagram{
    border-color:rgba(225,48,108,.38);
    background:
      linear-gradient(#091418,#091418) padding-box,
      linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045) border-box;
}
.gb-history .gbh-social-btn.instagram i{
    background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
    color:#fff;
}
.gb-history .gbh-social-btn.whatsapp{
    border-color:rgba(37,211,102,.38);
}
.gb-history .gbh-social-btn.whatsapp i{
    background:#25d366;
    color:#07120c;
}
.gb-history .gbh-social-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 34px rgba(0,0,0,.24);
}
.gb-history .gbh-social-btn.instagram:hover{
    border-color:#e1306c;
}
.gb-history .gbh-social-btn.whatsapp:hover{
    border-color:#25d366;
    box-shadow:0 14px 34px rgba(0,0,0,.24),0 0 24px rgba(37,211,102,.08);
}
.gb-history .gbh-social-note{
    width:100%;
    color:#647982;
    font-size:8px;
    line-height:1.45;
}
@media(max-width:620px){
    .gb-history .gbh-social-actions{
        display:grid;
        grid-template-columns:1fr 1fr;
    }
    .gb-history .gbh-social-btn{
        justify-content:center;
        padding:0 10px;
    }
    .gb-history .gbh-social-note{
        grid-column:1/-1;
    }
}
