  .og-wa-wrap { width: 100%; }

.og-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: .2px;
    line-height: 1;
    background: #0fb118;
    box-shadow: none;
    border: none;
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
    -webkit-tap-highlight-color: transparent;
}

        .og-wa-btn:hover{
            transform: translateY(-1px);
            filter: brightness(1.02);
            box-shadow: 0 14px 32px rgba(20,184,90,.30);
        }

        .og-wa-btn:active{
            transform: translateY(0);
            filter: brightness(.98);
        }

        .og-wa-text{
            font-size: 16px;
        }

        .og-wa-icon{
            display:inline-flex;
            width:34px;
            height:34px;
            align-items:center;
            justify-content:center;
            border-radius:999px;
        }

        .og-wa-icon svg{
            display:block;
        }

        /* Responsive: botón full width si quieres */
        @media (max-width: 640px){
            .og-wa-btn{
                width:100%;
                justify-content:center;
            }
        }