.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-b);
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 10px;
    padding: 14px 26px;
    cursor: pointer;
    transition: all .25s ease;
    border: none;
    white-space: nowrap;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: var(--blue);
    color: white;
}

.btn-primary:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(26, 144, 240, .3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, .18);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .05);
}

.btn-wa {
    background: #0B8C3A;
    color: white;
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 16px 28px;
}

.btn-wa:hover {
    background: #0A7A33;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
}